Skip to content

Commit 9def86d

Browse files
python313Packages.mitmproxy: 11.0.2 -> 11.1.3
Co-Authored-By: misilelab <[email protected]>
1 parent 252497c commit 9def86d

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

Diff for: pkgs/development/python-modules/mitmproxy/default.nix

+8-16
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
lib,
3-
stdenv,
43
fetchFromGitHub,
54
buildPythonPackage,
6-
pythonOlder,
75
# Mitmproxy requirements
86
aioquic,
7+
argon2-cffi,
98
asgiref,
10-
blinker,
119
brotli,
1210
certifi,
1311
cryptography,
@@ -17,11 +15,9 @@
1715
hyperframe,
1816
kaitaistruct,
1917
ldap3,
20-
mitmproxy-macos,
2118
mitmproxy-rs,
2219
msgpack,
2320
passlib,
24-
protobuf5,
2521
publicsuffix2,
2622
pyopenssl,
2723
pyparsing,
@@ -35,7 +31,6 @@
3531
zstandard,
3632
# Additional check requirements
3733
hypothesis,
38-
parver,
3934
pytest-asyncio,
4035
pytest-timeout,
4136
pytest-xdist,
@@ -45,16 +40,14 @@
4540

4641
buildPythonPackage rec {
4742
pname = "mitmproxy";
48-
version = "11.0.2";
43+
version = "11.1.3";
4944
pyproject = true;
5045

51-
disabled = pythonOlder "3.9";
52-
5346
src = fetchFromGitHub {
5447
owner = "mitmproxy";
5548
repo = "mitmproxy";
5649
tag = "v${version}";
57-
hash = "sha256-qcsPOISQjHVHh4TrQ/UihZaxB/jWBfq7AVI4U1gQPVs=";
50+
hash = "sha256-gTeXxNQWVMQYiGdIyy7SS6JcuYG16KLnjxBBdjhi+lE=";
5851
};
5952

6053
pythonRelaxDeps = [
@@ -65,10 +58,12 @@ buildPythonPackage rec {
6558
"urwid"
6659
];
6760

68-
propagatedBuildInputs = [
61+
build-system = [ setuptools ];
62+
63+
dependencies = [
6964
aioquic
65+
argon2-cffi
7066
asgiref
71-
blinker
7267
brotli
7368
certifi
7469
cryptography
@@ -81,23 +76,20 @@ buildPythonPackage rec {
8176
mitmproxy-rs
8277
msgpack
8378
passlib
84-
protobuf5
8579
publicsuffix2
8680
pyopenssl
8781
pyparsing
8882
pyperclip
8983
ruamel-yaml
90-
setuptools
9184
sortedcontainers
9285
tornado
9386
urwid
9487
wsproto
9588
zstandard
96-
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ mitmproxy-macos ];
89+
];
9790

9891
nativeCheckInputs = [
9992
hypothesis
100-
parver
10193
pytest-asyncio
10294
pytest-timeout
10395
pytest-xdist

0 commit comments

Comments
 (0)