File tree 1 file changed +10
-1
lines changed
pkgs/tools/networking/mitmproxy
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
- { stdenv , fetchFromGitHub , python3Packages } :
1
+ { stdenv , fetchurl , fetchFromGitHub , python3Packages } :
2
2
3
3
python3Packages . buildPythonPackage rec {
4
4
baseName = "mitmproxy" ;
@@ -12,6 +12,15 @@ python3Packages.buildPythonPackage rec {
12
12
sha256 = "1x1a28al5clpfd69rjcpw26gjjnpsm1vfl4scrwpdd1jhkw044h9" ;
13
13
} ;
14
14
15
+ patches = [
16
+ # Bump pyopenssl dependency
17
+ # https://github.com/mitmproxy/mitmproxy/pull/2252
18
+ ( fetchurl {
19
+ url = "https://patch-diff.githubusercontent.com/raw/mitmproxy/mitmproxy/pull/2252.patch" ;
20
+ sha256 = "0s3a6lf0wjnxi1r70qlhh0siaxhk5j2cysnv4xfkji3f2v7hhri4" ;
21
+ } )
22
+ ] ;
23
+
15
24
propagatedBuildInputs = with python3Packages ; [
16
25
blinker click certifi construct cryptography
17
26
cssutils editorconfig h2 html2text hyperframe
You can’t perform that action at this time.
0 commit comments