{ lib , buildPythonPackage , fetchPypi , setuptools }: buildPythonPackage rec { pname = "pex"; version = "2.1.42"; src = fetchPypi { inherit pname version; sha256 = "2deb088a3943891d07f9871e47409407e6308fbff3ee9514a0238791dc8da99f"; }; nativeBuildInputs = [ setuptools ]; # A few more dependencies I don't want to handle right now... doCheck = false; meta = with lib; { description = "A library and tool for generating .pex (Python EXecutable) files"; homepage = "https://github.com/pantsbuild/pex"; license = licenses.asl20; maintainers = with maintainers; [ copumpkin ]; }; }