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 = [
@@ -63,10 +56,12 @@ buildPythonPackage rec {
63
56
"urwid"
64
57
] ;
65
58
66
- propagatedBuildInputs = [
59
+ build-system = [ setuptools ] ;
60
+
61
+ dependencies = [
67
62
aioquic
63
+ argon2-cffi
68
64
asgiref
69
- blinker
70
65
brotli
71
66
certifi
72
67
cryptography
@@ -79,23 +74,20 @@ buildPythonPackage rec {
79
74
mitmproxy-rs
80
75
msgpack
81
76
passlib
82
- protobuf5
83
77
publicsuffix2
84
78
pyopenssl
85
79
pyparsing
86
80
pyperclip
87
81
ruamel-yaml
88
- setuptools
89
82
sortedcontainers
90
83
tornado
91
84
urwid
92
85
wsproto
93
86
zstandard
94
- ] ++ lib . optionals stdenv . hostPlatform . isDarwin [ mitmproxy-macos ] ;
87
+ ] ;
95
88
96
89
nativeCheckInputs = [
97
90
hypothesis
98
- parver
99
91
pytest-asyncio
100
92
pytest-timeout
101
93
pytest-xdist
You can’t perform that action at this time.
0 commit comments