blob: 4455be29ee7977b1abee2624c4db94b5b5a90f4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "types-urllib3";
version = "1.26.25.14";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ipt/V3yVG4wbksG8Ky/bC0mEe9KvbRzCouPdNA872o8=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "urllib3-stubs" ];
meta = {
description = "Typing stubs for urllib3";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|