python314Packages.trio-asyncio: disable

It fails to be imported with

    AttributeError: module 'asyncio.events' has no attribute 'BaseDefaultEventLoopPolicy'
This commit is contained in:
Robert Schütz
2026-01-07 06:27:05 -08:00
parent 49f7ce4979
commit dbbbfa5465
@@ -10,6 +10,7 @@
exceptiongroup,
pytest-trio,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
}:
@@ -18,7 +19,8 @@ buildPythonPackage rec {
version = "0.15.0";
pyproject = true;
disabled = pythonOlder "3.8";
# https://github.com/python-trio/trio-asyncio/issues/160
disabled = pythonAtLeast "3.14";
src = fetchFromGitHub {
owner = "python-trio";