otadump: init at 0.1.2 (#329129)
[NixPkgs.git] / pkgs / development / python-modules / pex / default.nix
blobf5cb793b6c50c7b5f144ad7be42cf9dfde897ff9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   hatchling,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pex";
11   version = "2.20.1";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-JvZiVb/qzkILBaALrCU2rldUgSgSD1eo4AqMPgEdJ50=";
19   };
21   build-system = [ hatchling ];
23   # A few more dependencies I don't want to handle right now...
24   doCheck = false;
26   pythonImportsCheck = [ "pex" ];
28   meta = with lib; {
29     description = "Python library and tool for generating .pex (Python EXecutable) files";
30     homepage = "https://github.com/pantsbuild/pex";
31     changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}";
32     license = licenses.asl20;
33     maintainers = with maintainers; [
34       copumpkin
35       phaer
36     ];
37   };