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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
{
aiofile,
brotli,
brotlicffi,
buildPythonPackage,
fetchFromGitHub,
hatchling,
h11,
isPyPy,
jh2,
lib,
pytest-asyncio,
pytest-timeout,
pytestCheckHook,
python-socks,
pythonOlder,
qh3,
stdenv,
tornado,
trustme,
wsproto,
zstandard,
}:
buildPythonPackage rec {
pname = "urllib3-future";
version = "2.15.901";
pyproject = true;
src = fetchFromGitHub {
owner = "jawah";
repo = "urllib3.future";
tag = version;
hash = "sha256-RffHaGJmbfI56QKgIIgSdGSaKZ/WGSNTZce8kck8neY=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "''''ignore:.*but not measured.*:coverage.exceptions.CoverageWarning''''," "" \
--replace-fail "''''ignore:.*No data was collected.*:coverage.exceptions.CoverageWarning''''," ""
'';
build-system = [ hatchling ];
# prevents installing a urllib3 module and thereby shadow the urllib3 package
env.URLLIB3_NO_OVERRIDE = "true";
dependencies = [
h11
jh2
qh3
];
optional-dependencies = {
brotli = [ (if isPyPy then brotlicffi else brotli) ];
qh3 = [ qh3 ];
secure = [ ];
socks = [ python-socks ];
ws = [ wsproto ];
zstd = lib.optionals (pythonOlder "3.14") [ zstandard ];
};
pythonImportsCheck = [ "urllib3_future" ];
# PermissionError: [Errno 1] Operation not permitted
doCheck = !stdenv.buildPlatform.isDarwin;
nativeCheckInputs = [
aiofile
pytest-asyncio
pytest-timeout
pytestCheckHook
tornado
trustme
]
++ lib.concatAttrValues optional-dependencies;
disabledTestPaths = [
# test connects to the internet
"test/contrib/test_resolver.py::test_url_resolver"
];
disabledTests = [
# test hangs
"test_proxy_rejection"
];
meta = {
changelog = "https://github.com/jawah/urllib3.future/blob/${src.tag}/CHANGES.rst";
description = "Powerful HTTP 1.1, 2, and 3 client with both sync and async interfaces";
homepage = "https://github.com/jawah/urllib3.future";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|