{ stdenv , buildPythonPackage , fetchPypi }: buildPythonPackage rec { pname = "pex"; version = "1.5.2"; src = fetchPypi { inherit pname version; sha256 = "6143465a09ca84dc0000ffc74c6eaf8f3210e590150e115832974994479b662b"; }; prePatch = '' substituteInPlace setup.py --replace 'SETUPTOOLS_REQUIREMENT,' '"setuptools"' ''; # A few more dependencies I don't want to handle right now... doCheck = false; meta = with stdenv.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 ]; }; }