pythonPackages.psutil: 5.6.7 -> 5.7.0

This commit is contained in:
Jonathan Ringer 2020-02-21 20:22:10 -08:00 committed by Jon
parent 68481e3a02
commit 0d1d43d49c

View file

@ -1,26 +1,41 @@
{ stdenv { lib, stdenv, buildPythonPackage, fetchPypi, isPy27, python
, buildPythonPackage
, fetchPypi
, darwin , darwin
, pytest
, mock
, ipaddress
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "psutil"; pname = "psutil";
version = "5.6.7"; version = "5.7.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "ffad8eb2ac614518bbe3c0b8eb9dffdb3a8d2e3a7d5da51c5b974fb723a5c5aa"; sha256 = "03jykdi3dgf1cdal9bv4fq9zjvzj9l9bs99gi5ar81sdl5nc2pk8";
}; };
# No tests in archive # arch doesn't report frequency is the same way
doCheck = false; doCheck = stdenv.isx86_64;
checkInputs = [ pytest ]
++ lib.optionals isPy27 [ mock ipaddress ];
# out must be referenced as test import paths are relative
# disable tests which don't work in sandbox
# cpu_times is flakey on darwin
checkPhase = ''
pytest $out/${python.sitePackages}/psutil/tests/test_system.py \
-k 'not user \
and not disk_io_counters and not sensors_battery \
and not cpu_times'
'';
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.IOKit ]; buildInputs = lib.optionals stdenv.isDarwin [ darwin.IOKit ];
meta = { pythonImportsCheck = [ "psutil" ];
meta = with lib; {
description = "Process and system utilization information interface for python"; description = "Process and system utilization information interface for python";
homepage = https://github.com/giampaolo/psutil; homepage = "https://github.com/giampaolo/psutil";
license = stdenv.lib.licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ jonringer ];
}; };
} }