{ lib , buildPythonPackage , fetchPypi , setuptools }: buildPythonPackage rec { pname = "pex"; version = "2.1.46"; src = fetchPypi { inherit pname version; sha256 = "28958292ab6a149ef7dd7998939a6e899b2f1ba811407ea1edac9d2d84417dfd"; }; 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 ]; }; }