nixpkgs/pkgs/development/python-modules/psutil/default.nix
2019-12-15 16:23:15 +01:00

27 lines
573 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, darwin
}:
buildPythonPackage rec {
pname = "psutil";
version = "5.6.7";
src = fetchPypi {
inherit pname version;
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;
};
}