mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
Merge pull request #111079 from fabaff/bump-starlette
python3Packages.starlette: fix build
This commit is contained in:
commit
b73500ff91
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user