blob: 1e10b10ca1d2b7e728d436b84b91419b1b9fd4f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "types-psutil";
version = "7.0.0.20250822";
format = "setuptools";
src = fetchPypi {
pname = "types_psutil";
inherit version;
hash = "sha256-Imy8DA6pzApQuKvMHZGibIdty0C+I4Ex9peINpBBlpg=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "psutil-stubs" ];
meta = {
description = "Typing stubs for psutil";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|