about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-06-12 20:56:11 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:09:37 +0200
commit4eb3784c5568e1a77fd31d788481d40e2326402d (patch)
tree35d3e8357f4795fc5d035832a199ecc92b20aac2
parent0c20574dbd594993df0274b65354eb20995fb7e6 (diff)
downloadnixlib-4eb3784c5568e1a77fd31d788481d40e2326402d.tar
nixlib-4eb3784c5568e1a77fd31d788481d40e2326402d.tar.gz
nixlib-4eb3784c5568e1a77fd31d788481d40e2326402d.tar.bz2
nixlib-4eb3784c5568e1a77fd31d788481d40e2326402d.tar.lz
nixlib-4eb3784c5568e1a77fd31d788481d40e2326402d.tar.xz
nixlib-4eb3784c5568e1a77fd31d788481d40e2326402d.tar.zst
nixlib-4eb3784c5568e1a77fd31d788481d40e2326402d.zip
python.pkgs.setuptools: 39.0.1 -> 39.2.0
-rw-r--r--pkgs/development/python-modules/setuptools/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix
index 972d8e90bf63..ea4781097220 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 = "39.0.1";
+  version = "39.2.0";
   name = "${python.libPrefix}-${pname}-${version}";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "bec7badf0f60e7fc8153fac47836edc41b74e5d541d7692e614e635720d6a7c7";
+    sha256 = "f7cddbb5f5c640311eb00eab6e849f7701fa70bf6a183fc8a2c33dd1d1672fb2";
   };
 
   nativeBuildInputs = [ unzip wrapPython ];
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
     description = "Utilities to facilitate the installation of Python packages";
     homepage = https://pypi.python.org/pypi/setuptools;
     license = with licenses; [ psfl zpl20 ];
-    platforms = platforms.all;
+    platforms = python.meta.platforms;
     priority = 10;
   };
 }