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
This commit is contained in:
R. RyanTM 2019-05-23 09:36:22 -07:00 committed by Renaud
parent 3db2e20d6e
commit 91ef57bbef

View File

@ -1,20 +1,19 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pex"; pname = "pex";
version = "1.6.6"; version = "1.6.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "ca887bedc9c6e0eab72fcb4c20eda8fff975d06b75993a85ee1dfc763ba38e86"; sha256 = "1hg30y8b4b96r4skhz2qmsp7li1izcg8854q3fi48rks0kcfx5fw";
}; };
prePatch = '' nativeBuildInputs = [ setuptools ];
substituteInPlace setup.py --replace 'SETUPTOOLS_REQUIREMENT,' '"setuptools"'
'';
# A few more dependencies I don't want to handle right now... # A few more dependencies I don't want to handle right now...
doCheck = false; doCheck = false;
@ -24,7 +23,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pantsbuild/pex"; homepage = "https://github.com/pantsbuild/pex";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ copumpkin ]; maintainers = with maintainers; [ copumpkin ];
broken = true;
}; };
} }