nixpkgs/pkgs/development/python-modules/pex/default.nix

35 lines
702 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "pex";
2021-11-01 20:05:06 +00:00
version = "2.1.54";
format = "setuptools";
src = fetchPypi {
inherit pname version;
2021-11-01 20:05:06 +00:00
sha256 = "5878d97e4b6df920cb7b4a45254501746945193289c934c707e36107594c0982";
};
nativeBuildInputs = [
setuptools
];
# A few more dependencies I don't want to handle right now...
doCheck = false;
pythonImportsCheck = [
"pex"
];
meta = with lib; {
description = "Python library and tool for generating .pex (Python EXecutable) files";
homepage = "https://github.com/pantsbuild/pex";
license = licenses.asl20;
maintainers = with maintainers; [ copumpkin ];
};
}