nixpkgs/pkgs/servers/radicale/3.x.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
927 B
Nix
Raw Normal View History

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