File tree Expand file tree Collapse file tree 1 file changed +8
-16
lines changed
pkgs/development/python-modules/mitmproxy Expand file tree Collapse file tree 1 file changed +8
-16
lines changed Original file line number Diff line number Diff line change 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 ,
1715 hyperframe ,
1816 kaitaistruct ,
1917 ldap3 ,
20- mitmproxy-macos ,
2118 mitmproxy-rs ,
2219 msgpack ,
2320 passlib ,
24- protobuf5 ,
2521 publicsuffix2 ,
2622 pyopenssl ,
2723 pyparsing ,
3531 zstandard ,
3632 # Additional check requirements
3733 hypothesis ,
38- parver ,
3934 pytest-asyncio ,
4035 pytest-timeout ,
4136 pytest-xdist ,
4540
4641buildPythonPackage 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 = [
@@ -63,10 +56,12 @@ buildPythonPackage rec {
6356 "urwid"
6457 ] ;
6558
66- propagatedBuildInputs = [
59+ build-system = [ setuptools ] ;
60+
61+ dependencies = [
6762 aioquic
63+ argon2-cffi
6864 asgiref
69- blinker
7065 brotli
7166 certifi
7267 cryptography
@@ -79,23 +74,20 @@ buildPythonPackage rec {
7974 mitmproxy-rs
8075 msgpack
8176 passlib
82- protobuf5
8377 publicsuffix2
8478 pyopenssl
8579 pyparsing
8680 pyperclip
8781 ruamel-yaml
88- setuptools
8982 sortedcontainers
9083 tornado
9184 urwid
9285 wsproto
9386 zstandard
94- ] ++ lib . optionals stdenv . hostPlatform . isDarwin [ mitmproxy-macos ] ;
87+ ] ;
9588
9689 nativeCheckInputs = [
9790 hypothesis
98- parver
9991 pytest-asyncio
10092 pytest-timeout
10193 pytest-xdist
You can’t perform that action at this time.
0 commit comments