From 5bcb9d92e6ee3d2686db97b3074b39add0c5ebb4 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 21 May 2026 08:36:00 +0000 Subject: [PATCH 1/2] python3Packages.hydra-core: skip failing test --- pkgs/development/python-modules/hydra-core/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/hydra-core/default.nix b/pkgs/development/python-modules/hydra-core/default.nix index bf9ab909df67..c24b4b63af13 100644 --- a/pkgs/development/python-modules/hydra-core/default.nix +++ b/pkgs/development/python-modules/hydra-core/default.nix @@ -81,8 +81,12 @@ buildPythonPackage (finalAttrs: { "test_bash_completion_with_dot_in_path" "test_install_uninstall" "test_config_search_path" + # does not raise UserWarning "test_initialize_compat_version_base" + + # AssertionError: Regex pattern did not match + "test_initialize_bad_version_base" ] ++ lib.optionals (pythonAtLeast "3.13") [ # AssertionError: Regex pattern did not match From 9d3598aee98336c784a3ffb7d0387c554248900a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 21 May 2026 08:48:01 +0000 Subject: [PATCH 2/2] python3Packages.hydra-core: enable __structuredAttrs --- pkgs/development/python-modules/hydra-core/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/hydra-core/default.nix b/pkgs/development/python-modules/hydra-core/default.nix index c24b4b63af13..cc4808cdb629 100644 --- a/pkgs/development/python-modules/hydra-core/default.nix +++ b/pkgs/development/python-modules/hydra-core/default.nix @@ -28,6 +28,7 @@ buildPythonPackage (finalAttrs: { pname = "hydra-core"; version = "1.3.2"; pyproject = true; + __structuredAttrs = true; src = fetchFromGitHub { owner = "facebookresearch";