3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.types-psutil: init at 5.9.5.5

This commit is contained in:
Anselm Schüler 2022-11-26 00:21:24 +01:00
parent 2da473132f
commit ddf17cf314
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };