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