ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / tornado / 4.nix
blob5765dee4415af0fd16883a2fba4339547d781d72
1 { lib
2 , unittestCheckHook
3 , buildPythonPackage
4 , fetchPypi
5 , isPy27
6 , pythonAtLeast
7 }:
9 buildPythonPackage rec {
10   pname = "tornado";
11   version = "4.5.3";
12   disabled = isPy27 || pythonAtLeast "3.10";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "02jzd23l4r6fswmwxaica9ldlyc2p6q8dk6dyff7j58fmdzf853d";
17   };
19   checkInputs = [ unittestCheckHook ];
21   # We specify the name of the test files to prevent
22   # https://github.com/NixOS/nixpkgs/issues/14634
23   unittestFlagsArray = [ "*_test.py" ];
25   __darwinAllowLocalNetworking = true;
27   meta = {
28     description = "A web framework and asynchronous networking library";
29     homepage = "https://www.tornadoweb.org/";
30     license = lib.licenses.asl20;
31   };