2018-10-16 15:37:57 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-05-23 17:36:22 +01:00
|
|
|
, setuptools
|
2018-10-16 15:37:57 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pex";
|
2019-07-16 09:05:28 +01:00
|
|
|
version = "1.6.8";
|
2018-10-16 15:37:57 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-16 09:05:28 +01:00
|
|
|
sha256 = "1zibkc074dvk69bkiipfzn2l9glgzs26g16j2ny5lzq320wqszkj";
|
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;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library and tool for generating .pex (Python EXecutable) files";
|
|
|
|
homepage = "https://github.com/pantsbuild/pex";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|