mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / types-requests / default.nix
blob124bcfe8874ff946e680be915f6a0aeeef073aa2
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.20241016";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-DZytLydRXQ4+PacTShtvKPuXEp2GuGfyTZxyZFJjTZU=";
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   };