29 lines
635 B
Nix
29 lines
635 B
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, setuptools
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pex";
|
||
|
version = "2.0.3";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "a8a35e7eb212616b2964d70d8a134d41d16649c943ab206b90c749c005e60999";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ setuptools ];
|
||
|
|
||
|
# 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 ];
|
||
|
};
|
||
|
|
||
|
}
|