mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
27 lines
573 B
Nix
27 lines
573 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, darwin
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "psutil";
|
|
version = "5.6.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d051532ac944f1be0179e0506f6889833cf96e466262523e57a871de65a15147";
|
|
};
|
|
|
|
# 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;
|
|
};
|
|
}
|