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 = {