1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5}:
6
7buildPythonPackage rec {
8 pname = "pex";
9 version = "2.1.55";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1f6b60b9c50996ec3476e36dddff34afa98dc2d68fa73ed121d3c41232df1379";
15 };
16
17 nativeBuildInputs = [
18 setuptools
19 ];
20
21 # A few more dependencies I don't want to handle right now...
22 doCheck = false;
23
24 pythonImportsCheck = [
25 "pex"
26 ];
27
28 meta = with lib; {
29 description = "Python library and tool for generating .pex (Python EXecutable) files";
30 homepage = "https://github.com/pantsbuild/pex";
31 license = licenses.asl20;
32 maintainers = with maintainers; [ copumpkin ];
33 };
34}