From eec0fb17836627df7d55144eda7d2c5487429960 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Thu, 8 Jan 2026 16:52:20 -0800 Subject: [PATCH] python3Packages.anyconfig: disable broken tests for python 3.14 --- pkgs/development/python-modules/anyconfig/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/anyconfig/default.nix b/pkgs/development/python-modules/anyconfig/default.nix index 8893fbf1d7b0..3b05879eb277 100644 --- a/pkgs/development/python-modules/anyconfig/default.nix +++ b/pkgs/development/python-modules/anyconfig/default.nix @@ -3,6 +3,7 @@ fetchFromGitHub, lib, pytestCheckHook, + pythonAtLeast, setuptools, }: @@ -29,6 +30,11 @@ buildPythonPackage (finalAttrs: { disabledTests = [ # OSError: /build/anyconfig-0.12.0/tests/res/cli/no_template/10/e/10.* should exists but not "test_runs_for_datasets" + ] + ++ lib.optionals (pythonAtLeast "3.14") [ + # Python 3.14: output format has changed + "test_dumps" + "test_dump" ]; disabledTestPaths = [