{ 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 = [ ]; }; }