nixpkgs/pkgs/development/python-modules/pex/default.nix
R. RyanTM 91ef57bbef python37Packages.pex: 1.6.6 -> 1.6.7 (#61910)
* python37Packages.pex: 1.6.6 -> 1.6.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-pex/versions

* python.pkgs.pex: unset meta.broken
2019-05-23 18:36:22 +02:00

29 lines
623 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "pex";
version = "1.6.7";
src = fetchPypi {
inherit pname version;
sha256 = "1hg30y8b4b96r4skhz2qmsp7li1izcg8854q3fi48rks0kcfx5fw";
};
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 ];
};
}