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.
This commit is contained in:
Martin Weinelt 2023-03-26 15:05:16 +02:00
parent 8422d0b645
commit 4413ef0e0c
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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; {