python3Packages.falcon: fix build; cythonize!
This commit is contained in:
parent
7f613bbdb6
commit
e391e40d02
1 changed files with 51 additions and 38 deletions
|
@ -1,22 +1,21 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchPypi
|
, isPyPy
|
||||||
, pytestCheckHook
|
, fetchFromGitHub
|
||||||
|
|
||||||
|
# build
|
||||||
|
, cython
|
||||||
|
|
||||||
|
# tests
|
||||||
, aiofiles
|
, aiofiles
|
||||||
, cbor2
|
, cbor2
|
||||||
, ddt
|
|
||||||
, gunicorn
|
|
||||||
, httpx
|
, httpx
|
||||||
, hypercorn
|
|
||||||
, jsonschema
|
|
||||||
, msgpack
|
, msgpack
|
||||||
, mujson
|
, mujson
|
||||||
, nose
|
|
||||||
, orjson
|
, orjson
|
||||||
, pecan
|
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
, python-mimeparse
|
, pytestCheckHook
|
||||||
, pyyaml
|
, pyyaml
|
||||||
, rapidjson
|
, rapidjson
|
||||||
, requests
|
, requests
|
||||||
|
@ -32,39 +31,53 @@ buildPythonPackage rec {
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
disabled = pythonOlder "3.5";
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "falconry";
|
||||||
sha256 = "sha256-8nYL0YwWOTpvteVfNx9nkh7bcv6+aTqCs8XoIZXQh7c=";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-Y6bD0GCXhqpvMV+/i1v59p2qWZ91f2ey7sPQrVALY54=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
nativeBuildInputs = lib.optionals (!isPyPy) [
|
||||||
aiofiles
|
cython
|
||||||
cbor2
|
|
||||||
ddt
|
|
||||||
gunicorn
|
|
||||||
httpx
|
|
||||||
hypercorn
|
|
||||||
jsonschema
|
|
||||||
msgpack
|
|
||||||
mujson
|
|
||||||
nose
|
|
||||||
orjson
|
|
||||||
pecan
|
|
||||||
pytest-asyncio
|
|
||||||
pytestCheckHook
|
|
||||||
python-mimeparse
|
|
||||||
pyyaml
|
|
||||||
rapidjson
|
|
||||||
requests
|
|
||||||
testtools
|
|
||||||
ujson
|
|
||||||
uvicorn
|
|
||||||
websockets
|
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTestPaths = [
|
preCheck = ''
|
||||||
# missing optional nuts package
|
export HOME=$TMPDIR
|
||||||
"falcon/bench/nuts/nuts/tests/test_functional.py"
|
cp -R tests examples $TMPDIR
|
||||||
|
pushd $TMPDIR
|
||||||
|
'';
|
||||||
|
|
||||||
|
postCheck = ''
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
# https://github.com/falconry/falcon/blob/master/requirements/tests
|
||||||
|
pytestCheckHook
|
||||||
|
pyyaml
|
||||||
|
requests
|
||||||
|
rapidjson
|
||||||
|
orjson
|
||||||
|
|
||||||
|
# ASGI specific
|
||||||
|
pytest-asyncio
|
||||||
|
aiofiles
|
||||||
|
httpx
|
||||||
|
uvicorn
|
||||||
|
websockets
|
||||||
|
|
||||||
|
# handler specific
|
||||||
|
cbor2
|
||||||
|
msgpack
|
||||||
|
mujson
|
||||||
|
ujson
|
||||||
|
] ++ lib.optionals (pythonOlder "3.10") [
|
||||||
|
testtools
|
||||||
|
];
|
||||||
|
|
||||||
|
pytestFlagsArray = [
|
||||||
|
"tests"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue