Merge pull request #143932 from r-ryantm/auto-update/python3.8-pex

python38Packages.pex: 2.1.52 -> 2.1.53
This commit is contained in:
Fabian Affolter 2021-10-31 08:39:44 +01:00 committed by GitHub
commit 951b524adf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,23 +6,29 @@
buildPythonPackage rec {
pname = "pex";
version = "2.1.52";
version = "2.1.53";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "6ab60a316892e6e7c6a39cdcbd324d2c3d763b2fe60f381a6fe34b671f24b6e0";
sha256 = "802cd39468b4bf27ff23d9911f76a6c66689cc906e12b9102aeace6491a8d084";
};
nativeBuildInputs = [ setuptools ];
nativeBuildInputs = [
setuptools
];
# A few more dependencies I don't want to handle right now...
doCheck = false;
pythonImportsCheck = [
"pex"
];
meta = with lib; {
description = "A library and tool for generating .pex (Python EXecutable) files";
description = "Python library and tool for generating .pex (Python EXecutable) files";
homepage = "https://github.com/pantsbuild/pex";
license = licenses.asl20;
maintainers = with maintainers; [ copumpkin ];
};
}