Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pex / default.nix
blob588a27159e8e3f9cc8db7b4e821fd82ad8447f42
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 }:
7 buildPythonPackage rec {
8   pname = "pex";
9   version = "2.1.30";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "ac170d656d2083d02048850005415d03d1767087e4f5037bc86defb6b23e712d";
14   };
16   nativeBuildInputs = [ setuptools ];
18   # A few more dependencies I don't want to handle right now...
19   doCheck = false;
21   meta = with lib; {
22     description = "A library and tool for generating .pex (Python EXecutable) files";
23     homepage = "https://github.com/pantsbuild/pex";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ copumpkin ];
26   };