{ stdenv , buildPythonPackage , fetchPypi , darwin }: buildPythonPackage rec { pname = "psutil"; version = "5.4.8"; src = fetchPypi { inherit pname version; sha256 = "6e265c8f3da00b015d24b842bfeb111f856b13d24f2c57036582568dc650d6c3"; }; # No tests in archive doCheck = false; buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.IOKit ]; meta = { description = "Process and system utilization information interface for python"; homepage = https://github.com/giampaolo/psutil; license = stdenv.lib.licenses.bsd3; }; }