From 8e2efe8a33a82d145c647f5798d5fef95750c50a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 1 Feb 2026 10:47:13 +0000 Subject: [PATCH] python3Packages.fnllm: skip failing test on python>=3.14 Tracking: https://github.com/NixOS/nixpkgs/issues/475732 --- pkgs/development/python-modules/fnllm/default.nix | 5 +++++ 1 file changed, 5 insertions(+) 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 = {