anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / tornado / 4.nix
blob0381e25d953e80d6386626b5c3f5b4bb3d80692f
2   lib,
3   unittestCheckHook,
4   buildPythonPackage,
5   fetchPypi,
6   fetchpatch,
7   isPy27,
8   pythonAtLeast,
9 }:
11 buildPythonPackage rec {
12   pname = "tornado";
13   version = "4.5.3";
14   disabled = isPy27 || pythonAtLeast "3.10";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "02jzd23l4r6fswmwxaica9ldlyc2p6q8dk6dyff7j58fmdzf853d";
19   };
21   patches = [
22     (fetchpatch {
23       name = "CVE-2023-28370.patch";
24       url = "https://github.com/tornadoweb/tornado/commit/32ad07c54e607839273b4e1819c347f5c8976b2f.patch";
25       hash = "sha256-2dpPHkNThOaZD8T2g1vb/I5WYZ/vy/t690539uprJyc=";
26     })
27   ];
29   nativeCheckInputs = [ unittestCheckHook ];
31   # We specify the name of the test files to prevent
32   # https://github.com/NixOS/nixpkgs/issues/14634
33   unittestFlagsArray = [ "*_test.py" ];
35   __darwinAllowLocalNetworking = true;
37   meta = {
38     description = "Web framework and asynchronous networking library";
39     homepage = "https://www.tornadoweb.org/";
40     license = lib.licenses.asl20;
41   };