python3Packages.starlette: fix build
This commit is contained in:
parent
26f6af373e
commit
2a8bf55892
@ -15,7 +15,6 @@
|
|||||||
, databases
|
, databases
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
, pytestcov
|
|
||||||
, typing-extensions
|
, typing-extensions
|
||||||
, ApplicationServices
|
, ApplicationServices
|
||||||
}:
|
}:
|
||||||
@ -46,12 +45,14 @@ buildPythonPackage rec {
|
|||||||
checkInputs = [
|
checkInputs = [
|
||||||
aiosqlite
|
aiosqlite
|
||||||
databases
|
databases
|
||||||
|
pytest-asyncio
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
typing-extensions
|
typing-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
pytestFlagsArray = [ "--ignore=tests/test_graphql.py" ];
|
disabledTestFiles = [ "tests/test_graphql.py" ];
|
||||||
|
# https://github.com/encode/starlette/issues/1131
|
||||||
|
disabledTests = [ "test_debug_html" ];
|
||||||
pythonImportsCheck = [ "starlette" ];
|
pythonImportsCheck = [ "starlette" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user