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 , 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; {