2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 15:37:57 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-05-23 17:36:22 +01:00
|
|
|
, setuptools
|
2018-10-16 15:37:57 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pex";
|
2020-11-29 14:04:35 +00:00
|
|
|
version = "2.1.21";
|
2018-10-16 15:37:57 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:35 +00:00
|
|
|
sha256 = "d580a26da1b342ab2ebbf675ba2bab04e98c4d1aaf2a6fea09f41d68dfc466ba";
|
2018-10-16 15:37:57 +01:00
|
|
|
};
|
|
|
|
|
2019-05-23 17:36:22 +01:00
|
|
|
nativeBuildInputs = [ setuptools ];
|
2018-10-16 15:37:57 +01:00
|
|
|
|
|
|
|
# A few more dependencies I don't want to handle right now...
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 15:37:57 +01:00
|
|
|
description = "A library and tool for generating .pex (Python EXecutable) files";
|
|
|
|
homepage = "https://github.com/pantsbuild/pex";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|