2020-02-22 04:22:10 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy27, python
|
2017-11-23 15:59:42 +00:00
|
|
|
, darwin
|
2021-02-24 15:23:35 +00:00
|
|
|
, pytestCheckHook
|
2020-02-22 04:22:10 +00:00
|
|
|
, mock
|
|
|
|
, ipaddress
|
2020-08-04 10:15:12 +01:00
|
|
|
, unittest2
|
2017-11-23 15:59:42 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "psutil";
|
2020-12-30 08:36:51 +00:00
|
|
|
version = "5.8.0";
|
2017-11-23 15:59:42 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-30 08:36:51 +00:00
|
|
|
sha256 = "1immnj532bnnrh1qmk5q3lsw3san8qfk9kxy1cpmy0knmfcwp70c";
|
2017-11-23 15:59:42 +00:00
|
|
|
};
|
|
|
|
|
2020-02-22 04:22:10 +00:00
|
|
|
# arch doesn't report frequency is the same way
|
2020-03-14 01:20:20 +00:00
|
|
|
# tests segfaults on darwin https://github.com/giampaolo/psutil/issues/1715
|
2020-06-19 20:03:41 +01:00
|
|
|
doCheck = !stdenv.isDarwin && stdenv.isx86_64;
|
2021-02-24 15:23:35 +00:00
|
|
|
checkInputs = [ pytestCheckHook ]
|
2020-08-04 10:15:12 +01:00
|
|
|
++ lib.optionals isPy27 [ mock ipaddress unittest2 ];
|
2021-02-24 15:23:35 +00:00
|
|
|
pytestFlagsArray = [
|
|
|
|
"$out/${python.sitePackages}/psutil/tests/test_system.py"
|
|
|
|
];
|
2020-02-22 04:22:10 +00:00
|
|
|
# disable tests which don't work in sandbox
|
|
|
|
# cpu_times is flakey on darwin
|
2021-02-24 15:23:35 +00:00
|
|
|
disabledTests = [
|
|
|
|
"user"
|
|
|
|
"disk_io_counters"
|
|
|
|
"sensors_battery"
|
|
|
|
"cpu_times"
|
2021-02-24 15:29:39 +00:00
|
|
|
"cpu_freq"
|
2021-02-24 15:23:35 +00:00
|
|
|
];
|
2017-11-23 15:59:42 +00:00
|
|
|
|
2020-02-22 04:22:10 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ darwin.IOKit ];
|
2017-11-23 15:59:42 +00:00
|
|
|
|
2020-02-22 04:22:10 +00:00
|
|
|
pythonImportsCheck = [ "psutil" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2017-11-23 15:59:42 +00:00
|
|
|
description = "Process and system utilization information interface for python";
|
2020-02-22 04:22:10 +00:00
|
|
|
homepage = "https://github.com/giampaolo/psutil";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ jonringer ];
|
2017-11-23 15:59:42 +00:00
|
|
|
};
|
|
|
|
}
|