From 0f083c72e956b7e94bf15b5f871a8a80f38e32fb Mon Sep 17 00:00:00 2001 From: eljamm Date: Mon, 17 Mar 2025 08:23:13 +0100 Subject: [PATCH] canaille: disable tests --- pkgs/by-name/ca/canaille/package.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/by-name/ca/canaille/package.nix b/pkgs/by-name/ca/canaille/package.nix index 76a433cb7e95..7703ec0b7a4c 100644 --- a/pkgs/by-name/ca/canaille/package.nix +++ b/pkgs/by-name/ca/canaille/package.nix @@ -120,6 +120,16 @@ python.pkgs.buildPythonApplication rec { }; }; + disabledTests = [ + # cause by authlib being too up-to-date for this version of canaille + # see: https://github.com/NixOS/nixpkgs/issues/389861#issuecomment-2726361949 + # FIX: update and see if this is fixed + "test_invalid_client[ldap_backend]" + "test_invalid_client[memory_backend]" + "test_invalid_client[sql_backend]" + "test_password_reset[sql_backend]" + ]; + meta = with lib; { description = "Lightweight Identity and Authorization Management"; homepage = "https://canaille.readthedocs.io/en/latest/index.html";