biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / types-requests / default.nix
blobed5295ea0d9765f2c8bf3fc34386b8782c777311
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   types-urllib3,
7   urllib3,
8 }:
10 buildPythonPackage rec {
11   pname = "types-requests";
12   version = "2.32.0.20240914";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-KFDheNs5Gdm/gJ5DTu9luknQ5+M6yS1Yj0peKV//1AU=";
18   };
20   build-system = [ setuptools ];
22   dependencies = [
23     types-urllib3
24     urllib3
25   ];
27   # Module doesn't have tests
28   doCheck = false;
30   pythonImportsCheck = [ "requests-stubs" ];
32   meta = with lib; {
33     description = "Typing stubs for requests";
34     homepage = "https://github.com/python/typeshed";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ fab ];
37   };