nixpkgs/pkgs/development/python-modules/psutil/default.nix

27 lines
573 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
2019-01-29 14:43:08 -08:00
, fetchPypi
, darwin
}:
buildPythonPackage rec {
pname = "psutil";
2019-12-10 10:07:41 -08:00
version = "5.6.7";
src = fetchPypi {
inherit pname version;
2019-12-10 10:07:41 -08:00
sha256 = "ffad8eb2ac614518bbe3c0b8eb9dffdb3a8d2e3a7d5da51c5b974fb723a5c5aa";
};
# 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;
};
}