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";