blob: e0d604bd1d63105e9877ee9bc3c1ff78da6a6fe8 (
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
30
31
32
33
34
35
36
37
38
39
|
{
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 ];
};
}
|