mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
141 lines
2.9 KiB
Nix
141 lines
2.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, aiofiles
|
|
, beautifulsoup4
|
|
, buildPythonPackage
|
|
, doCheck ? true
|
|
, fetchFromGitHub
|
|
, gunicorn
|
|
, httptools
|
|
, multidict
|
|
, pytest-asyncio
|
|
, pytest-benchmark
|
|
, pytest-sugar
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonAtLeast
|
|
, sanic-routing
|
|
, sanic-testing
|
|
, ujson
|
|
, uvicorn
|
|
, uvloop
|
|
, websockets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sanic";
|
|
version = "22.3.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sanic-org";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-4zdPp3X22dfZ5YlW3G5/OqeUxrt+NiFO9dk2XjEKXEg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Loosen dependency requirements.
|
|
substituteInPlace setup.py \
|
|
--replace "pytest==6.2.5" "pytest" \
|
|
--replace "gunicorn==20.0.4" "gunicorn"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
aiofiles
|
|
httptools
|
|
multidict
|
|
sanic-routing
|
|
ujson
|
|
uvloop
|
|
websockets
|
|
];
|
|
|
|
checkInputs = [
|
|
beautifulsoup4
|
|
gunicorn
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
sanic-testing
|
|
uvicorn
|
|
];
|
|
|
|
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"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Fails to parse cmdline arguments
|
|
"test_dev"
|
|
"test_auto_reload"
|
|
"test_host_port_ipv6_loopback"
|
|
"test_num_workers"
|
|
"test_debug"
|
|
"test_access_logs"
|
|
"test_noisy_exceptions"
|
|
# OSError: foo
|
|
"test_bad_headers"
|
|
"test_create_server_trigger_events"
|
|
"test_json_body_requests"
|
|
"test_missing_startup_raises_exception"
|
|
"test_no_body_requests"
|
|
"test_oserror_warning"
|
|
"test_running_multiple_offset_warning"
|
|
"test_streaming_body_requests"
|
|
"test_trigger_before_events_create_server"
|
|
"test_keep_alive_connection_context"
|
|
# Racy tests
|
|
"test_keep_alive_client_timeout"
|
|
"test_keep_alive_server_timeout"
|
|
"test_zero_downtime"
|
|
# broke with ujson 5.4 upgrade
|
|
# https://github.com/sanic-org/sanic/pull/2504
|
|
"test_json_response_json"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# We are not interested in benchmarks
|
|
"benchmark/"
|
|
# 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; {
|
|
broken = stdenv.isDarwin;
|
|
description = "Web server and web framework";
|
|
homepage = "https://github.com/sanic-org/sanic/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ costrouc AluisioASG ];
|
|
};
|
|
}
|