summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-09-07 15:04:47 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-07 15:06:22 +0200
commita26ae760e2ebacc5780ebb2906a4c3cc467747c2 (patch)
tree36a1d387443f22a154bc4fb0e24dc86a64745e28 /pkgs/development
parent52932fade011f9761266d04c98aa3550c8f96faa (diff)
downloadnixpkgs-a26ae760e2ebacc5780ebb2906a4c3cc467747c2.tar
nixpkgs-a26ae760e2ebacc5780ebb2906a4c3cc467747c2.tar.gz
nixpkgs-a26ae760e2ebacc5780ebb2906a4c3cc467747c2.tar.bz2
nixpkgs-a26ae760e2ebacc5780ebb2906a4c3cc467747c2.tar.lz
nixpkgs-a26ae760e2ebacc5780ebb2906a4c3cc467747c2.tar.xz
nixpkgs-a26ae760e2ebacc5780ebb2906a4c3cc467747c2.tar.zst
nixpkgs-a26ae760e2ebacc5780ebb2906a4c3cc467747c2.zip
python.pkgs.setuptools: upgrade to 36.4.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/bootstrapped-pip/default.nix6
-rw-r--r--pkgs/development/python-modules/setuptools/default.nix4
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix
index 3e07806986b..26db071cad5 100644
--- a/pkgs/development/python-modules/bootstrapped-pip/default.nix
+++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix
@@ -9,16 +9,16 @@ let
   };
   setuptools_source = fetchPypi {
     pname = "setuptools";
-    version = "36.0.1";
+    version = "36.4.0";
     format = "wheel";
-    sha256 = "f2900e560efc479938a219433c48f15a4ff4ecfe575a65de385eeb44f2425587";
+    sha256 = "4d54c0bfee283e78609169213f9c075827d5837086f58b588b417b093c23464b";
   };
 
   # TODO: Shouldn't be necessary anymore for pip > 9.0.1!
   # https://github.com/NixOS/nixpkgs/issues/26392
   # https://github.com/pypa/setuptools/issues/885
   pkg_resources = fetchurl {
-    url = https://raw.githubusercontent.com/pypa/setuptools/v36.0.1/pkg_resources/__init__.py;
+    url = "https://raw.githubusercontent.com/pypa/setuptools/v36.4.0/pkg_resources/__init__.py";
     sha256 = "1wdnq3mammk75mifkdmmjx7yhnpydvnvi804na8ym4mj934l2jkv";
   };
 
diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix
index b6bf629e746..1c6fb414a73 100644
--- a/pkgs/development/python-modules/setuptools/default.nix
+++ b/pkgs/development/python-modules/setuptools/default.nix
@@ -8,13 +8,13 @@
 # Should use buildPythonPackage here somehow
 stdenv.mkDerivation rec {
   pname = "setuptools";
-  version = "36.2.7";
+  version = "36.4.0";
   name = "${python.libPrefix}-${pname}-${version}";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "b0fe5d432d922df595e918577c51458d63f245115d141b309ac32ecfca329df5";
+    sha256 = "2758b0270fe8ceec42f336ee5b411e60dc8579febc27bb3ba9b794dc7f0239ae";
   };
 
   buildInputs = [ python wrapPython unzip ];