python311Packages.trio-asyncio: disable failing test

Disabled a failing test, that has not been updated with Python 3.11 in
mind.

+5
+5
pkgs/development/python-modules/trio-asyncio/default.nix
··· 6 6 , sniffio 7 7 , pytest-trio 8 8 , pytestCheckHook 9 + , pythonAtLeast 9 10 , pythonOlder 10 11 }: 11 12 ··· 47 48 48 49 disabledTestPaths = [ 49 50 "tests/python" # tries to import internal API test.test_asyncio 51 + ]; 52 + 53 + disabledTests = lib.optionals (pythonAtLeast "3.11") [ 54 + "test_run_task" 50 55 ]; 51 56 52 57 pythonImportsCheck = [