python311Packages.pex: 2.1.156 -> 2.1.159

Changelog: https://github.com/pantsbuild/pex/releases/tag/v2.1.159
This commit is contained in:
Fabian Affolter 2024-01-17 13:03:46 +01:00
parent 89e1466501
commit aa640c761e

View file

@ -1,24 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, setuptools
, pythonOlder
}:
buildPythonPackage rec {
pname = "pex";
version = "2.1.156";
version = "2.1.159";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-VC7LRXwh9a6Pp0mJQJjhxU6GOWKO/ucOzn+J2mAqpMI=";
hash = "sha256-hBlwfyQ1PbD6AyCsra2yZwt0x8+iGtDisU9coTSJRZI=";
};
nativeBuildInputs = [
flit-core
setuptools
];
# A few more dependencies I don't want to handle right now...