diff --git a/pkgs/development/python-modules/fnllm/default.nix b/pkgs/development/python-modules/fnllm/default.nix index 46e88eb9f3a6..94f182abc218 100644 --- a/pkgs/development/python-modules/fnllm/default.nix +++ b/pkgs/development/python-modules/fnllm/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchPypi, + pythonAtLeast, # build-system hatchling, @@ -88,6 +89,10 @@ buildPythonPackage (finalAttrs: { "test_clear" "test_handles_common_errors" "test_children" + ] + ++ lib.optionals (pythonAtLeast "3.14") [ + # RuntimeError: There is no current event loop in thread 'MainThread' + "test_call_batch_raises_if_response_length_mismatch" ]; meta = {