radicale: format with nixfmt-rfc-style

This commit is contained in:
Robert Schütz 2024-11-24 13:33:23 -08:00
parent 6c1474baf0
commit 8dca27661f

View File

@ -1,7 +1,8 @@
{ lib
, python3
, fetchFromGitHub
, nixosTests
{
fetchFromGitHub,
lib,
nixosTests,
python3,
}:
python3.pkgs.buildPythonApplication rec {
@ -20,14 +21,17 @@ python3.pkgs.buildPythonApplication rec {
setuptools
];
dependencies = with python3.pkgs; [
defusedxml
passlib
vobject
pika
python-dateutil
pytz # https://github.com/Kozea/Radicale/issues/816
] ++ passlib.optional-dependencies.bcrypt;
dependencies =
with python3.pkgs;
[
defusedxml
passlib
vobject
pika
python-dateutil
pytz # https://github.com/Kozea/Radicale/issues/816
]
++ passlib.optional-dependencies.bcrypt;
__darwinAllowLocalNetworking = true;
@ -40,11 +44,14 @@ python3.pkgs.buildPythonApplication rec {
inherit (nixosTests) radicale;
};
meta = with lib; {
meta = {
homepage = "https://radicale.org/v3.html";
changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
description = "CalDAV and CardDAV server";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda erictapen ];
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
dotlambda
erictapen
];
};
}