Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 28 lines 635 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, setuptools 5}: 6 7buildPythonPackage rec { 8 pname = "pex"; 9 version = "2.0.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "a8a35e7eb212616b2964d70d8a134d41d16649c943ab206b90c749c005e60999"; 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}