summary refs log tree commit diff
path: root/pkgs/servers/radicale/3.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/radicale/3.x.nix')
-rw-r--r--pkgs/servers/radicale/3.x.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/servers/radicale/3.x.nix b/pkgs/servers/radicale/3.x.nix
index 594cd1712ea..25f4d4b69c0 100644
--- a/pkgs/servers/radicale/3.x.nix
+++ b/pkgs/servers/radicale/3.x.nix
@@ -1,4 +1,4 @@
-{ lib, python3, fetchFromGitHub }:
+{ lib, python3, fetchFromGitHub, nixosTests }:
 
 python3.pkgs.buildPythonApplication rec {
   pname = "radicale";
@@ -28,6 +28,10 @@ python3.pkgs.buildPythonApplication rec {
     waitress
   ];
 
+  passthru.tests = {
+    inherit (nixosTests) radicale;
+  };
+
   meta = with lib; {
     homepage = "https://www.radicale.org/3.0.html";
     description = "CalDAV and CardDAV server";