{ lib , buildPythonPackage , fetchPypi }: buildPythonPackage rec { pname = "types-urllib3"; version = "1.26.11"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-JNZORBFohR6wXx0CLeGK4xVY9WScjxEX44TC6F4xMVs="; }; # Module doesn't have tests doCheck = false; pythonImportsCheck = [ "urllib3-stubs" ]; meta = with lib; { description = "Typing stubs for urllib3"; homepage = "https://github.com/python/typeshed"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }