From f1e99e9edff400915c97b33f812dcee256163d5d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 18 Jan 2026 10:15:15 +0100 Subject: [PATCH] python314Packages.aioswitcher: disable failing test on Python 3.14 --- pkgs/development/python-modules/aioswitcher/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aioswitcher/default.nix b/pkgs/development/python-modules/aioswitcher/default.nix index 5fc148e73d09..310b2c1ee8ed 100644 --- a/pkgs/development/python-modules/aioswitcher/default.nix +++ b/pkgs/development/python-modules/aioswitcher/default.nix @@ -62,9 +62,13 @@ buildPythonPackage rec { "test_schedule_parser_with_a_non_recurring_enabled_schedule_data" ] ++ lib.optionals (pythonAtLeast "3.12") [ - # ssertionError: Expected <'I' format requires 0 <= number <= 4294967295> to be equal to , but was not. + # AssertionError: Expected <'I' format requires 0 <= number <= 4294967295> to be equal to , but was not. "test_minutes_to_hexadecimal_seconds_with_a_negative_value_should_throw_an_error" "test_current_timestamp_to_hexadecimal_with_errornous_value_should_throw_an_error" + ] + ++ lib.optionals (pythonAtLeast "3.12") [ + # AssertionError: Expected to be equal + "test_seconds_to_iso_time_with_a_nagative_value_should_throw_an_error" ]; pythonImportsCheck = [ "aioswitcher" ];