Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / types-psutil / default.nix
blob8e01ec2c3ff3432caeb31bfc288f30bacaaa64be
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-psutil";
8   version = "5.9.5.16";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-TpshnvtiXT0E9r8QaTT4fKtJqkGpSwo7MIlAP0enkig=";
14   };
16   # Module doesn't have tests
17   doCheck = false;
19   pythonImportsCheck = [
20     "psutil-stubs"
21   ];
23   meta = with lib; {
24     description = "Typing stubs for psutil";
25     homepage = "https://github.com/python/typeshed";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ anselmschueler ];
28   };