nixpkgs/pkgs/development/python-modules/types-urllib3/default.nix

30 lines
566 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-urllib3";
version = "1.26.14";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-KiV45LNjQczSQLAPzNqYJpiP8FiaRLpKZku9ae80jSc=";
};
# 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 ];
};
}