From dbbbfa54655b61031f9f28224f1fea1a4728171d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 7 Jan 2026 06:27:05 -0800 Subject: [PATCH] python314Packages.trio-asyncio: disable It fails to be imported with AttributeError: module 'asyncio.events' has no attribute 'BaseDefaultEventLoopPolicy' --- pkgs/development/python-modules/trio-asyncio/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/trio-asyncio/default.nix b/pkgs/development/python-modules/trio-asyncio/default.nix index cef3210be1eb..e29d707ab897 100644 --- a/pkgs/development/python-modules/trio-asyncio/default.nix +++ b/pkgs/development/python-modules/trio-asyncio/default.nix @@ -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";