1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5}:
6
7buildPythonPackage rec {
8 pname = "pex";
9 version = "2.1.34";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "988e6a4e12933522e0c647da78c6e30fc42e3a172ba52cfb0332affcfc9ee29e";
14 };
15
16 nativeBuildInputs = [ setuptools ];
17
18 # A few more dependencies I don't want to handle right now...
19 doCheck = false;
20
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 };
27
28}