2023-10-09 19:29:22 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2021-04-25 03:57:28 +00:00
|
|
|
pname = "radicale";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "3.2.3";
|
2024-04-21 15:54:59 +00:00
|
|
|
pyproject = true;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2021-04-25 03:57:28 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Kozea";
|
|
|
|
repo = "Radicale";
|
2024-09-19 14:19:46 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-1IlnXVetQQuKBt6+QVKNeMM6qBQAiUhqc+4x3xOnSdE=";
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
|
2021-04-25 03:57:28 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -i '/addopts/d' setup.cfg
|
|
|
|
'';
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
build-system = with python3.pkgs; [
|
2024-04-21 15:54:59 +00:00
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
dependencies = with python3.pkgs; [
|
2020-07-18 16:06:22 +00:00
|
|
|
defusedxml
|
|
|
|
passlib
|
|
|
|
vobject
|
2024-05-15 15:35:15 +00:00
|
|
|
pika
|
2020-07-18 16:06:22 +00:00
|
|
|
python-dateutil
|
2022-05-18 14:49:53 +00:00
|
|
|
pytz # https://github.com/Kozea/Radicale/issues/816
|
2022-06-16 17:23:12 +00:00
|
|
|
] ++ passlib.optional-dependencies.bcrypt;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
2024-04-21 15:54:59 +00:00
|
|
|
pytest7CheckHook
|
2020-07-18 16:06:22 +00:00
|
|
|
waitress
|
|
|
|
];
|
|
|
|
|
2021-04-25 03:57:28 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) radicale;
|
|
|
|
};
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
meta = with lib; {
|
2022-01-03 16:56:52 +00:00
|
|
|
homepage = "https://radicale.org/v3.html";
|
2024-04-21 15:54:59 +00:00
|
|
|
changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
|
2020-07-18 16:06:22 +00:00
|
|
|
description = "CalDAV and CardDAV server";
|
|
|
|
license = licenses.gpl3Plus;
|
2022-02-10 20:34:41 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda erictapen ];
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
}
|