{ lib, buildPythonPackage, fetchPypi, setuptools, types-urllib3, urllib3, }: buildPythonPackage rec { pname = "types-requests"; version = "2.32.4.20250913"; pyproject = true; src = fetchPypi { pname = "types_requests"; inherit version; hash = "sha256-q9bU+c46k4PyaXdamDWkwk5c1rn2R9ZPiKpGE8M9710="; }; build-system = [ setuptools ]; dependencies = [ types-urllib3 urllib3 ]; # Module doesn't have tests doCheck = false; pythonImportsCheck = [ "requests-stubs" ]; meta = { description = "Typing stubs for requests"; homepage = "https://github.com/python/typeshed"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; }