{ stdenv , buildPythonPackage , fetchPypi , darwin , mock }: buildPythonPackage rec { pname = "psutil"; version = "5.4.6"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "686e5a35fe4c0acc25f3466c32e716f2d498aaae7b7edc03e2305b682226bcf6"; }; # 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; }; }