7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
15 rev = "refs/tags/v${version}";
16 hash = "sha256-1IlnXVetQQuKBt6+QVKNeMM6qBQAiUhqc+4x3xOnSdE=";
20 sed -i '/addopts/d' setup.cfg
23 build-system = with python3.pkgs; [
27 dependencies = with python3.pkgs; [
33 pytz # https://github.com/Kozea/Radicale/issues/816
34 ] ++ passlib.optional-dependencies.bcrypt;
36 __darwinAllowLocalNetworking = true;
38 nativeCheckInputs = with python3.pkgs; [
44 inherit (nixosTests) radicale;
48 homepage = "https://radicale.org/v3.html";
49 changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
50 description = "CalDAV and CardDAV server";
51 license = licenses.gpl3Plus;
52 maintainers = with maintainers; [ dotlambda erictapen ];