summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-26 15:05:16 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-26 15:05:16 +0200
commit4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a (patch)
treecbc7f310c873d876aa82064feed3861ae6693ee5
parent8422d0b6453347ad7d5ea0396b10794425f31823 (diff)
downloadnixpkgs-4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a.tar
nixpkgs-4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a.tar.gz
nixpkgs-4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a.tar.bz2
nixpkgs-4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a.tar.lz
nixpkgs-4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a.tar.xz
nixpkgs-4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a.tar.zst
nixpkgs-4413ef0e0cc0ca677f28f1ec99e1e6262cb94d9a.zip
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.
-rw-r--r--pkgs/servers/radicale/2.x.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/servers/radicale/2.x.nix b/pkgs/servers/radicale/2.x.nix
index 737582d7631..7e86322e31c 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; {