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-03-24 02:28:19 -07:00
|
|
|
version = "2.1.34";
|
2018-10-16 07:37:57 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 02:28:19 -07:00
|
|
|
sha256 = "988e6a4e12933522e0c647da78c6e30fc42e3a172ba52cfb0332affcfc9ee29e";
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|