7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
15 rev = "refs/tags/v${version}";
16 hash = "sha256-S9/bPgItbr6rRr4WX+hmyU1RvKn5gz9FdZjYlr0hnd0=";
19 build-system = with python3.pkgs; [
23 dependencies = with python3.pkgs; [
29 pytz # https://github.com/Kozea/Radicale/issues/816
30 ] ++ passlib.optional-dependencies.bcrypt;
32 __darwinAllowLocalNetworking = true;
34 nativeCheckInputs = with python3.pkgs; [
40 inherit (nixosTests) radicale;
44 homepage = "https://radicale.org/v3.html";
45 changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
46 description = "CalDAV and CardDAV server";
47 license = licenses.gpl3Plus;
48 maintainers = with maintainers; [ dotlambda erictapen ];