2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-16 16:37:57 +02:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-05-23 18:36:22 +02:00
|
|
|
, setuptools
|
2018-10-16 16:37:57 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pex";
|
2021-06-18 23:47:29 +02:00
|
|
|
version = "2.1.42";
|
2018-10-16 16:37:57 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 23:47:29 +02:00
|
|
|
sha256 = "2deb088a3943891d07f9871e47409407e6308fbff3ee9514a0238791dc8da99f";
|
2018-10-16 16:37:57 +02:00
|
|
|
};
|
|
|
|
|
2019-05-23 18:36:22 +02:00
|
|
|
nativeBuildInputs = [ setuptools ];
|
2018-10-16 16:37:57 +02:00
|
|
|
|
|
|
|
# A few more dependencies I don't want to handle right now...
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-16 16:37:57 +02: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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|