about summary refs log tree commit diff
path: root/pkgs/servers/radicale
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-24 23:51:22 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-27 18:35:16 +0100
commite1feaa95441947ea7f5361a05b60a46b744820ab (patch)
treec140c789a0163d410f11af379867126cabade3e7 /pkgs/servers/radicale
parentdb5d5bb7535e48448793e5707068313cdeb035d9 (diff)
radicale: test with pytest 7
Diffstat (limited to 'pkgs/servers/radicale')
-rw-r--r--pkgs/servers/radicale/3.x.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/servers/radicale/3.x.nix b/pkgs/servers/radicale/3.x.nix
index 92db274bf7085..c9523233379e2 100644
--- a/pkgs/servers/radicale/3.x.nix
+++ b/pkgs/servers/radicale/3.x.nix
@@ -35,15 +35,10 @@ python3.pkgs.buildPythonApplication rec {
   __darwinAllowLocalNetworking = true;
 
   nativeCheckInputs = with python3.pkgs; [
-    pytestCheckHook
+    pytest7CheckHook
     waitress
   ];
 
-  pytestFlagsArray = [
-    # pytest.PytestRemovedIn8Warning: Support for nose tests is deprecated and will be removed in a future release.
-    "-W" "ignore::pytest.PytestRemovedIn8Warning"
-  ];
-
   passthru.tests = {
     inherit (nixosTests) radicale;
   };