Merge pull request #247088 from phaer/pex-update

python310Packages.pex: 2.1.137 -> 2.1.141
This commit is contained in:
adisbladis 2023-08-05 16:25:13 +12:00 committed by GitHub
commit cc0e47cd36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "pex";
version = "2.1.137";
version = "2.1.141";
format = "flit";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ywzmz2R1fdW6TzTEYHq0hfeQnmwkzUecoozlIgXw7es=";
hash = "sha256-EsIurZNgWslUciz5Pc2hj2F4tAJ8hQydRWnVIWdryDc=";
};
nativeBuildInputs = [
@ -33,6 +33,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pantsbuild/pex";
changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ copumpkin ];
maintainers = with maintainers; [ copumpkin phaer ];
};
}