File tree 1 file changed +8
-16
lines changed
pkgs/development/python-modules/mitmproxy
1 file changed +8
-16
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
lib ,
3
- stdenv ,
4
3
fetchFromGitHub ,
5
4
buildPythonPackage ,
6
- pythonOlder ,
7
5
# Mitmproxy requirements
8
6
aioquic ,
7
+ argon2-cffi ,
9
8
asgiref ,
10
- blinker ,
11
9
brotli ,
12
10
certifi ,
13
11
cryptography ,
17
15
hyperframe ,
18
16
kaitaistruct ,
19
17
ldap3 ,
20
- mitmproxy-macos ,
21
18
mitmproxy-rs ,
22
19
msgpack ,
23
20
passlib ,
24
- protobuf5 ,
25
21
publicsuffix2 ,
26
22
pyopenssl ,
27
23
pyparsing ,
35
31
zstandard ,
36
32
# Additional check requirements
37
33
hypothesis ,
38
- parver ,
39
34
pytest-asyncio ,
40
35
pytest-timeout ,
41
36
pytest-xdist ,
45
40
46
41
buildPythonPackage rec {
47
42
pname = "mitmproxy" ;
48
- version = "11.0.2 " ;
43
+ version = "11.1.3 " ;
49
44
pyproject = true ;
50
45
51
- disabled = pythonOlder "3.9" ;
52
-
53
46
src = fetchFromGitHub {
54
47
owner = "mitmproxy" ;
55
48
repo = "mitmproxy" ;
56
49
tag = "v${ version } " ;
57
- hash = "sha256-qcsPOISQjHVHh4TrQ/UihZaxB/jWBfq7AVI4U1gQPVs =" ;
50
+ hash = "sha256-gTeXxNQWVMQYiGdIyy7SS6JcuYG16KLnjxBBdjhi+lE =" ;
58
51
} ;
59
52
60
53
pythonRelaxDeps = [
@@ -65,10 +58,12 @@ buildPythonPackage rec {
65
58
"urwid"
66
59
] ;
67
60
68
- propagatedBuildInputs = [
61
+ build-system = [ setuptools ] ;
62
+
63
+ dependencies = [
69
64
aioquic
65
+ argon2-cffi
70
66
asgiref
71
- blinker
72
67
brotli
73
68
certifi
74
69
cryptography
@@ -81,23 +76,20 @@ buildPythonPackage rec {
81
76
mitmproxy-rs
82
77
msgpack
83
78
passlib
84
- protobuf5
85
79
publicsuffix2
86
80
pyopenssl
87
81
pyparsing
88
82
pyperclip
89
83
ruamel-yaml
90
- setuptools
91
84
sortedcontainers
92
85
tornado
93
86
urwid
94
87
wsproto
95
88
zstandard
96
- ] ++ lib . optionals stdenv . hostPlatform . isDarwin [ mitmproxy-macos ] ;
89
+ ] ;
97
90
98
91
nativeCheckInputs = [
99
92
hypothesis
100
- parver
101
93
pytest-asyncio
102
94
pytest-timeout
103
95
pytest-xdist
You can’t perform that action at this time.
0 commit comments