We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a8a77 commit cd6106cCopy full SHA for cd6106c
1 file changed
pkgs/development/python-modules/tornado/4.nix
@@ -2,6 +2,7 @@
2
, unittestCheckHook
3
, buildPythonPackage
4
, fetchPypi
5
+, fetchpatch
6
, isPy27
7
, pythonAtLeast
8
}:
@@ -16,6 +17,14 @@ buildPythonPackage rec {
16
17
sha256 = "02jzd23l4r6fswmwxaica9ldlyc2p6q8dk6dyff7j58fmdzf853d";
18
};
19
20
+ patches = [
21
+ (fetchpatch {
22
+ name = "CVE-2023-28370.patch";
23
+ url = "https://github.com/tornadoweb/tornado/commit/32ad07c54e607839273b4e1819c347f5c8976b2f.patch";
24
+ hash = "sha256-2dpPHkNThOaZD8T2g1vb/I5WYZ/vy/t690539uprJyc=";
25
+ })
26
+ ];
27
+
28
nativeCheckInputs = [ unittestCheckHook ];
29
30
# We specify the name of the test files to prevent
0 commit comments