3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #202635 from r-ryantm/auto-update/python310Packages.pex

python310Packages.pex: 2.1.113 -> 2.1.114
This commit is contained in:
Fabian Affolter 2022-11-24 07:46:41 +01:00 committed by GitHub
commit 055651dce8
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.113";
version = "2.1.114";
format = "flit";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-FykzeHQjBMBZ+NqOMzjwHiOCMLk1rvomjUaoHco2ZQg=";
hash = "sha256-EfeoSik6vYQS4MAulfM2xfRUGYG308QzWAj4buCXX4U=";
};
nativeBuildInputs = [
@ -31,6 +31,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library and tool for generating .pex (Python EXecutable) files";
homepage = "https://github.com/pantsbuild/pex";
changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ copumpkin ];
};