From 4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 26 Mar 2023 15:05:16 +0200 Subject: [PATCH] radicale2: Disable weak crypt htpasswd test With our recent libxcrypt changes we don't support a lot of weak algorithms any longer, which made this test fail. --- pkgs/servers/radicale/2.x.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/radicale/2.x.nix b/pkgs/servers/radicale/2.x.nix index 737582d76319..7e86322e31c6 100644 --- a/pkgs/servers/radicale/2.x.nix +++ b/pkgs/servers/radicale/2.x.nix @@ -26,8 +26,12 @@ python3.pkgs.buildPythonApplication rec { ]; nativeCheckInputs = with python3.pkgs; [ - pytest-runner - pytest + pytestCheckHook + ]; + + disabledTests = [ + # uses unsupported crypt method + "test_htpasswd_crypt" ]; meta = with lib; {