biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pex / default.nix
blob2df4dd4b8ff0a6143b5b75a06e49f151680fcd57
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   hatchling,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pex";
11   version = "2.12.1";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-KBD9sRqtQT02RfyXurUiGy28bucB7l/irF/fPmVeGwc=";
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   };