nixpkgs/pkgs/development/python-modules/pex/default.nix
2021-02-26 11:01:50 +01:00

29 lines
626 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "pex";
version = "2.1.30";
src = fetchPypi {
inherit pname version;
sha256 = "ac170d656d2083d02048850005415d03d1767087e4f5037bc86defb6b23e712d";
};
nativeBuildInputs = [ setuptools ];
# A few more dependencies I don't want to handle right now...
doCheck = false;
meta = with 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 ];
};
}