about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pex
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-05-23 09:36:22 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-05-23 18:36:22 +0200
commit91ef57bbefbb42280be3ae6c756f4bc37fe6da1e (patch)
tree4d6817c0349d98707ea570ef885e63e2139ef145 /pkgs/development/python-modules/pex
parent3db2e20d6e00215b1f4d269f628977b9fa7a5300 (diff)
python37Packages.pex: 1.6.6 -> 1.6.7 (#61910)
* python37Packages.pex: 1.6.6 -> 1.6.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-pex/versions

* python.pkgs.pex: unset meta.broken
Diffstat (limited to 'pkgs/development/python-modules/pex')
-rw-r--r--pkgs/development/python-modules/pex/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pex/default.nix b/pkgs/development/python-modules/pex/default.nix
index 9f87d8a16cb0c..4d064af18fa71 100644
--- a/pkgs/development/python-modules/pex/default.nix
+++ b/pkgs/development/python-modules/pex/default.nix
@@ -1,20 +1,19 @@
 { stdenv
 , buildPythonPackage
 , fetchPypi
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "pex";
-  version = "1.6.6";
+  version = "1.6.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "ca887bedc9c6e0eab72fcb4c20eda8fff975d06b75993a85ee1dfc763ba38e86";
+    sha256 = "1hg30y8b4b96r4skhz2qmsp7li1izcg8854q3fi48rks0kcfx5fw";
   };
 
-  prePatch = ''
-    substituteInPlace setup.py --replace 'SETUPTOOLS_REQUIREMENT,' '"setuptools"'
-  '';
+  nativeBuildInputs = [ setuptools ];
 
   # A few more dependencies I don't want to handle right now...
   doCheck = false;
@@ -24,7 +23,6 @@ buildPythonPackage rec {
     homepage = "https://github.com/pantsbuild/pex";
     license = licenses.asl20;
     maintainers = with maintainers; [ copumpkin ];
-    broken = true;
   };
 
 }