From 845a4a129e2b14c179b7ecebb88713ffff26ddf5 Mon Sep 17 00:00:00 2001 From: SkohTV Date: Wed, 14 Jan 2026 13:59:45 -0500 Subject: [PATCH] python3Packages.fire: disable testFireAsyncio for Python 3.14 --- pkgs/development/python-modules/fire/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/fire/default.nix b/pkgs/development/python-modules/fire/default.nix index 8282ca1bdf13..0ba1a46dcb22 100644 --- a/pkgs/development/python-modules/fire/default.nix +++ b/pkgs/development/python-modules/fire/default.nix @@ -9,6 +9,7 @@ levenshtein, pytestCheckHook, termcolor, + pythonAtLeast, }: buildPythonPackage rec { @@ -37,6 +38,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = lib.optionals (pythonAtLeast "3.14") [ + # RuntimeError: There is no current event loop in thread 'MainThread' + "testFireAsyncio" + ]; + pythonImportsCheck = [ "fire" ]; meta = {