mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
74 lines
1.5 KiB
Nix
74 lines
1.5 KiB
Nix
{ lib
|
|
, python
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
|
|
# for passthru.tests
|
|
, distributed
|
|
, jupyter-server
|
|
, jupyterlab
|
|
, matplotlib
|
|
, mitmproxy
|
|
, pytest-tornado
|
|
, pytest-tornasync
|
|
, pyzmq
|
|
, sockjs-tornado
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tornado";
|
|
version = "6.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tornadoweb";
|
|
repo = "tornado";
|
|
rev = "v${version}";
|
|
hash = "sha256-l9Ce/c2wDSmsySr9yXu5Fl/+63QkQay46aDSUTJmetA=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# additional tests that have extra dependencies, run slowly, or produce more output than a simple pass/fail
|
|
# https://github.com/tornadoweb/tornado/blob/v6.2.0/maint/test/README
|
|
"maint/test"
|
|
|
|
# AttributeError: 'TestIOStreamWebMixin' object has no attribute 'io_loop'
|
|
"tornado/test/iostream_test.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Exception: did not get expected log message
|
|
"test_unix_socket_bad_request"
|
|
];
|
|
|
|
pythonImportsCheck = [ "tornado" ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
passthru.tests = {
|
|
inherit
|
|
distributed
|
|
jupyter-server
|
|
jupyterlab
|
|
matplotlib
|
|
mitmproxy
|
|
pytest-tornado
|
|
pytest-tornasync
|
|
pyzmq
|
|
sockjs-tornado
|
|
urllib3;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A web framework and asynchronous networking library";
|
|
homepage = "https://www.tornadoweb.org/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|