From 4b52c7d176e8d883df2b28034b237668181cda76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 7 Jan 2026 07:49:05 -0800 Subject: [PATCH] python314Packages.pyserial-asyncio-fast: disable The tests fail with RuntimeError: There is no current event loop in thread 'MainThread'. --- .../python-modules/pyserial-asyncio-fast/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix b/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix index 99940e26d627..f8a1c4c8c780 100644 --- a/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix +++ b/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, + pythonAtLeast, # build-system setuptools, @@ -19,6 +20,9 @@ buildPythonPackage rec { version = "0.16"; pyproject = true; + # https://github.com/home-assistant-libs/pyserial-asyncio-fast/pull/37 + disabled = pythonAtLeast "3.14"; + src = fetchFromGitHub { owner = "bdraco"; repo = "pyserial-asyncio-fast";