Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-psutil / default.nix
blobed7269e458217240cfaafc681f9de289e51890ee
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-psutil";
8   version = "5.9.5.20240316";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-Vjb1cUu5MMZLs0xNR6WdyS+dYQt3i1Nkox2qVYSUSEg=";
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   };