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