ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / types-requests / default.nix
blobba8193a2f888263333685752d8343beb5fc65616
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , types-urllib3
5 }:
7 buildPythonPackage rec {
8   pname = "types-requests";
9   version = "2.28.11.3";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-vpAHr/sX8KCbtI532xi7bgvp+CYJx48drm2zAlnXIdY=";
15   };
17   propagatedBuildInputs = [
18     types-urllib3
19   ];
21   # Module doesn't have tests
22   doCheck = false;
24   pythonImportsCheck = [
25     "requests-stubs"
26   ];
28   meta = with lib; {
29     description = "Typing stubs for requests";
30     homepage = "https://github.com/python/typeshed";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ fab ];
33   };