about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bootstrapped-pip
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-01-23 12:09:44 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2016-01-24 14:34:01 +0100
commite0d0f8dbd2a4980e7a65e702064ffdaa3427c253 (patch)
treea4c05747dd918c2eb74460cf4f9f01d59a44530c /pkgs/development/python-modules/bootstrapped-pip
parent5c565856be654072db745fa08c9c5ab28c00c43b (diff)
downloadnixlib-e0d0f8dbd2a4980e7a65e702064ffdaa3427c253.tar
nixlib-e0d0f8dbd2a4980e7a65e702064ffdaa3427c253.tar.gz
nixlib-e0d0f8dbd2a4980e7a65e702064ffdaa3427c253.tar.bz2
nixlib-e0d0f8dbd2a4980e7a65e702064ffdaa3427c253.tar.lz
nixlib-e0d0f8dbd2a4980e7a65e702064ffdaa3427c253.tar.xz
nixlib-e0d0f8dbd2a4980e7a65e702064ffdaa3427c253.tar.zst
nixlib-e0d0f8dbd2a4980e7a65e702064ffdaa3427c253.zip
pythonPackages.setuptools and bootstrapped-pip: 18.2 -> 19.4
Update to latest setuptools. Latest setuptools will always try to run tests.
This can cause some very vague errors. We now need to fix all packages where we do not
invoke the correct test runner.
Diffstat (limited to 'pkgs/development/python-modules/bootstrapped-pip')
-rw-r--r--pkgs/development/python-modules/bootstrapped-pip/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix
index 677736270290..43f8cca4c827 100644
--- a/pkgs/development/python-modules/bootstrapped-pip/default.nix
+++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix
@@ -6,8 +6,8 @@ let
     sha256 = "1sl642ncvipqx0hzypvl5hsiqngy0sib0kq242g4mic7vnid6bn9";
   };
   setuptools_source = fetchurl {
-    url = "https://pypi.python.org/packages/3.4/s/setuptools/setuptools-18.2-py2.py3-none-any.whl";
-    sha256 = "0jhafl8wmjc8xigl1ib5hqiq9crmipcz0zcga52riymgqbf2bzh4";
+    url = "https://pypi.python.org/packages/3.5/s/setuptools/setuptools-19.4-py2.py3-none-any.whl";
+    sha256 = "0801e6d862ca4ce24d918420d62f07ee2fe736dc016e3afa99d2103e7a02e9a6";
   };
 in stdenv.mkDerivation rec {
   name = "python-${python.version}-bootstrapped-pip-${version}";