Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-urllib3 / default.nix
blobd02174d7727fe89abbfadf1bf7612b1e83fe6efc
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-urllib3";
8   version = "1.26.25.14";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-Ipt/V3yVG4wbksG8Ky/bC0mEe9KvbRzCouPdNA872o8=";
14   };
16   # Module doesn't have tests
17   doCheck = false;
19   pythonImportsCheck = [
20     "urllib3-stubs"
21   ];
23   meta = with lib; {
24     description = "Typing stubs for urllib3";
25     homepage = "https://github.com/python/typeshed";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ fab ];
28   };