587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
171 lines
3.7 KiB
Nix
171 lines
3.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, pythonAtLeast
|
|
|
|
# build-system
|
|
, setuptools
|
|
, wheel
|
|
|
|
# propagates
|
|
, aiofiles
|
|
, html5tagger
|
|
, httptools
|
|
, multidict
|
|
, sanic-routing
|
|
, tracerite
|
|
, typing-extensions
|
|
, ujson
|
|
, uvloop
|
|
, websockets
|
|
|
|
# optionals
|
|
, aioquic
|
|
|
|
# tests
|
|
, doCheck ? !stdenv.isDarwin # on Darwin, tests fail but pkg still works
|
|
|
|
, beautifulsoup4
|
|
, gunicorn
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, sanic-testing
|
|
, uvicorn
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sanic";
|
|
version = "23.12.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sanic-org";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-TizjibqoLNMX0m5oPyncKgFnltXOLZUIPSzVIeKU25w=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiofiles
|
|
httptools
|
|
html5tagger
|
|
multidict
|
|
sanic-routing
|
|
tracerite
|
|
typing-extensions
|
|
ujson
|
|
uvloop
|
|
websockets
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
ext = [
|
|
# TODO: sanic-ext
|
|
];
|
|
http3 = [
|
|
aioquic
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
beautifulsoup4
|
|
gunicorn
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
sanic-testing
|
|
uvicorn
|
|
] ++ passthru.optional-dependencies.http3;
|
|
|
|
inherit doCheck;
|
|
|
|
preCheck = ''
|
|
# Some tests depends on sanic on PATH
|
|
PATH="$out/bin:$PATH"
|
|
PYTHONPATH=$PWD:$PYTHONPATH
|
|
|
|
# needed for relative paths for some packages
|
|
cd tests
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
# OSError: [Errno 24] Too many open files
|
|
ulimit -n 1024
|
|
'';
|
|
|
|
# uvloop usage is buggy
|
|
#SANIC_NO_UVLOOP = true;
|
|
|
|
pytestFlagsArray = [
|
|
"--asyncio-mode=auto"
|
|
"-vvv"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Require networking
|
|
"test_full_message"
|
|
# Server mode mismatch (debug vs production)
|
|
"test_num_workers"
|
|
# Racy tests
|
|
"test_keep_alive_client_timeout"
|
|
"test_keep_alive_server_timeout"
|
|
"test_zero_downtime"
|
|
# sanic.exceptions.SanicException: Cannot setup Sanic Simple Server without a path to a directory
|
|
"test_load_app_simple"
|
|
# create defunct python processes
|
|
"test_reloader_live"
|
|
"test_reloader_live_with_dir"
|
|
"test_reload_listeners"
|
|
# crash the python interpreter
|
|
"test_host_port_localhost"
|
|
"test_host_port"
|
|
"test_server_run"
|
|
# NoneType object is not subscriptable
|
|
"test_serve_app_implicit"
|
|
# AssertionError: assert [] == ['Restarting a process', 'Begin restart termination', 'Starting a process']
|
|
"test_default_reload_shutdown_order"
|
|
# App not found.
|
|
"test_input_is_dir"
|
|
# HTTP 500 with Websocket subprotocols
|
|
"test_websocket_route_with_subprotocols"
|
|
# Socket closes early
|
|
"test_no_exceptions_when_cancel_pending_request"
|
|
] ++ lib.optionals (pythonAtLeast "3.12") [
|
|
# AttributeError: 'has_calls' is not a valid assertion. Use a spec for the mock if 'has_calls' is meant to be an attribute.
|
|
"test_ws_frame_put_message_into_queue"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# We are not interested in benchmarks
|
|
"benchmark/"
|
|
# We are also not interested in typing
|
|
"typing/test_typing.py"
|
|
# unable to create async loop
|
|
"test_app.py"
|
|
"test_asgi.py"
|
|
# occasionally hangs
|
|
"test_multiprocessing.py"
|
|
];
|
|
|
|
# avoid usage of nixpkgs-review in darwin since tests will compete usage
|
|
# for the same local port
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
pythonImportsCheck = [ "sanic" ];
|
|
|
|
meta = with lib; {
|
|
description = "Web server and web framework";
|
|
mainProgram = "sanic";
|
|
homepage = "https://github.com/sanic-org/sanic/";
|
|
changelog = "https://github.com/sanic-org/sanic/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ AluisioASG ];
|
|
};
|
|
}
|