1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, setuptools
5}:
6
7buildPythonPackage rec {
8 pname = "pex";
9 version = "2.1.15";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "e1092ae52cfdef41c22d98fa98f9225ac21936a7d096131777ca3a7940fe1b2d";
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 stdenv.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}