2021-04-23 15:13:36 +02:00
|
|
|
{ lib, python3, fetchFromGitHub, nixosTests }:
|
2020-06-20 14:18:58 +02:00
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2021-04-23 14:44:17 +02:00
|
|
|
pname = "radicale";
|
2022-07-18 21:30:11 +02:00
|
|
|
version = "3.1.8";
|
2020-06-20 14:18:58 +02:00
|
|
|
|
2021-04-23 14:44:17 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Kozea";
|
|
|
|
repo = "Radicale";
|
2021-12-27 00:26:36 +01:00
|
|
|
rev = "v${version}";
|
2022-07-18 21:30:11 +02:00
|
|
|
hash = "sha256-V0nqgxGUxcTRAYFuxpKUEVB/g/Mbvw+9OIcvAexXwuM=";
|
2020-06-20 14:18:58 +02:00
|
|
|
};
|
|
|
|
|
2021-04-23 14:44:17 +02:00
|
|
|
postPatch = ''
|
|
|
|
sed -i '/addopts/d' setup.cfg
|
|
|
|
'';
|
|
|
|
|
2020-06-20 14:18:58 +02:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
defusedxml
|
|
|
|
passlib
|
|
|
|
vobject
|
|
|
|
python-dateutil
|
2022-05-17 19:29:14 +02:00
|
|
|
pytz # https://github.com/Kozea/Radicale/issues/816
|
2022-05-22 16:26:11 +02:00
|
|
|
] ++ passlib.optional-dependencies.bcrypt;
|
2020-06-20 14:18:58 +02:00
|
|
|
|
2023-01-21 13:00:00 +01:00
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
2021-04-23 14:44:17 +02:00
|
|
|
pytestCheckHook
|
2020-06-20 14:18:58 +02:00
|
|
|
waitress
|
|
|
|
];
|
|
|
|
|
2021-04-23 15:13:36 +02:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) radicale;
|
|
|
|
};
|
|
|
|
|
2020-06-20 14:18:58 +02:00
|
|
|
meta = with lib; {
|
2022-01-03 16:53:12 +01:00
|
|
|
homepage = "https://radicale.org/v3.html";
|
2020-06-20 14:18:58 +02:00
|
|
|
description = "CalDAV and CardDAV server";
|
|
|
|
license = licenses.gpl3Plus;
|
2022-01-19 23:08:36 +01:00
|
|
|
maintainers = with maintainers; [ dotlambda erictapen ];
|
2020-06-20 14:18:58 +02:00
|
|
|
};
|
|
|
|
}
|