forked from mirrors/nixpkgs
pythonPackages.types-psutil: init at 5.9.5.5
This commit is contained in:
parent
2da473132f
commit
ddf17cf314
29
pkgs/development/python-modules/types-psutil/default.nix
Normal file
29
pkgs/development/python-modules/types-psutil/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-psutil";
|
||||
version = "5.9.5.5";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-Tyb9sssGSydMvGNZ+6Sr87OimT19SrwzatCUdWghLGI=";
|
||||
};
|
||||
|
||||
# Module doesn't have tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"psutil-stubs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Typing stubs for psutil";
|
||||
homepage = "https://github.com/python/typeshed";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ anselmschueler ];
|
||||
};
|
||||
}
|
|
@ -11442,6 +11442,8 @@ self: super: with self; {
|
|||
|
||||
types-protobuf = callPackage ../development/python-modules/types-protobuf { };
|
||||
|
||||
types-psutil = callPackage ../development/python-modules/types-psutil { };
|
||||
|
||||
types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { };
|
||||
|
||||
types-pytz = callPackage ../development/python-modules/types-pytz { };
|
||||
|
|
Loading…
Reference in a new issue