ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / types-urllib3 / default.nix
blob7b667e0df56e0bd7d6188cecbc2c3072294d6b11
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-urllib3";
8   version = "1.26.25.2";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-o6UQ22CbNjZwzGLtt2WYuCcL001OsvbJ8IjQ59gZbWs=";
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   };