2023-08-30 05:12:38 +01:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2020-06-20 13:18:58 +01:00
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2021-04-23 13:44:17 +01:00
|
|
|
pname = "radicale";
|
2024-03-18 16:28:09 +00:00
|
|
|
version = "3.1.9";
|
|
|
|
pyproject = true;
|
2020-06-20 13:18:58 +01:00
|
|
|
|
2021-04-23 13:44:17 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Kozea";
|
|
|
|
repo = "Radicale";
|
2021-12-26 23:26:36 +00:00
|
|
|
rev = "v${version}";
|
2024-03-18 16:28:09 +00:00
|
|
|
hash = "sha256-i4NQ1+ltRE0g8AoyGKKVcgZgSmLeppnobu6bf2+XmWY=";
|
2020-06-20 13:18:58 +01:00
|
|
|
};
|
|
|
|
|
2021-04-23 13:44:17 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i '/addopts/d' setup.cfg
|
|
|
|
'';
|
|
|
|
|
2024-03-18 16:28:09 +00:00
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2020-06-20 13:18:58 +01:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
defusedxml
|
|
|
|
passlib
|
|
|
|
vobject
|
|
|
|
python-dateutil
|
2022-05-17 18:29:14 +01:00
|
|
|
pytz # https://github.com/Kozea/Radicale/issues/816
|
2022-05-22 15:26:11 +01:00
|
|
|
] ++ passlib.optional-dependencies.bcrypt;
|
2020-06-20 13:18:58 +01:00
|
|
|
|
2023-08-30 05:12:38 +01:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
2024-03-24 22:51:22 +00:00
|
|
|
pytest7CheckHook
|
2020-06-20 13:18:58 +01:00
|
|
|
waitress
|
|
|
|
];
|
|
|
|
|
2021-04-23 14:13:36 +01:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) radicale;
|
|
|
|
};
|
|
|
|
|
2020-06-20 13:18:58 +01:00
|
|
|
meta = with lib; {
|
2022-01-03 15:53:12 +00:00
|
|
|
homepage = "https://radicale.org/v3.html";
|
2024-03-18 16:28:09 +00:00
|
|
|
changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
|
2020-06-20 13:18:58 +01:00
|
|
|
description = "CalDAV and CardDAV server";
|
|
|
|
license = licenses.gpl3Plus;
|
2022-01-19 22:08:36 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda erictapen ];
|
2020-06-20 13:18:58 +01:00
|
|
|
};
|
|
|
|
}
|