Merge pull request #111079 from fabaff/bump-starlette

python3Packages.starlette: fix build
This commit is contained in:
Martin Weinelt 2021-02-11 03:06:45 +01:00 committed by GitHub
commit b73500ff91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,6 @@
, databases
, pytestCheckHook
, pytest-asyncio
, pytestcov
, typing-extensions
, ApplicationServices
}:
@ -46,12 +45,14 @@ buildPythonPackage rec {
checkInputs = [
aiosqlite
databases
pytest-asyncio
pytestCheckHook
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" ];
meta = with lib; {