about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-12-05 12:46:57 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2016-12-05 17:33:21 +0100
commit47d4575255ea8159c5e84c1774c43d0f2d1d2bc5 (patch)
treecf190c8ce96827b375992dce9d02c8e6ae2c42da /pkgs/development/python-modules
parentc1d98d959b38df00a1d933a5a9a381aa80096024 (diff)
downloadnixlib-47d4575255ea8159c5e84c1774c43d0f2d1d2bc5.tar
nixlib-47d4575255ea8159c5e84c1774c43d0f2d1d2bc5.tar.gz
nixlib-47d4575255ea8159c5e84c1774c43d0f2d1d2bc5.tar.bz2
nixlib-47d4575255ea8159c5e84c1774c43d0f2d1d2bc5.tar.lz
nixlib-47d4575255ea8159c5e84c1774c43d0f2d1d2bc5.tar.xz
nixlib-47d4575255ea8159c5e84c1774c43d0f2d1d2bc5.tar.zst
nixlib-47d4575255ea8159c5e84c1774c43d0f2d1d2bc5.zip
pythonPackages.setuptools: 28.8.0 -> 30.2.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/bootstrapped-pip/default.nix4
-rw-r--r--pkgs/development/python-modules/setuptools/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix
index ed8bbab29a7a..7c992921e948 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 = "ea8033fc9905804e652f75474d33410a07404c1a78dd3c949a66863bd1050ebd";
   };
   setuptools_source = fetchurl {
-    url = "https://files.pythonhosted.org/packages/3b/7e/293d19ccd106119e35db4bf3e111b1895098f618b455b758aa636496cf03/setuptools-28.8.0-py2.py3-none-any.whl";
-    sha256 = "2e59d06ac798efce29c567ee0e0687514efca529a665b8f364cf497cd10d21b2";
+    url = "https://files.pythonhosted.org/packages/b8/cb/b919f52dd81b4b2210d0c5529b6b629a4002e08d49a90183605d1181b10c/setuptools-30.2.0-py2.py3-none-any.whl";
+    sha256 = "b7e7b28d6a728ea38953d66e12ef400c3c153c523539f1b3997c5a42f3770ff1";
   };
   argparse_source = fetchurl {
     url = "https://pypi.python.org/packages/2.7/a/argparse/argparse-1.4.0-py2.py3-none-any.whl";
diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix
index bba5a6c942b0..63e05736d796 100644
--- a/pkgs/development/python-modules/setuptools/default.nix
+++ b/pkgs/development/python-modules/setuptools/default.nix
@@ -5,11 +5,11 @@ stdenv.mkDerivation rec {
   shortName = "${pname}-${version}";
   name = "${python.libPrefix}-${shortName}";
 
-  version = "28.8.0";
+  version = "30.2.0";
 
   src = fetchurl {
     url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${shortName}.tar.gz";
-    sha256 = "432a1ad4044338c34c2d09b0ff75d509b9849df8cf329f4c1c7706d9c2ba3c61";
+    sha256 = "f865709919903e3399343c0b3c42f95e9aeddc41e38cfb334fb2bb5dfa384857";
   };
 
   buildInputs = [ python wrapPython ];