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

42 lines
832 B
Nix
Raw Normal View History

2021-04-23 13:13:36 +00:00
{ lib, python3, fetchFromGitHub, nixosTests }:
2020-06-20 12:18:58 +00:00
python3.pkgs.buildPythonApplication rec {
2021-04-23 12:44:17 +00:00
pname = "radicale";
2021-01-16 09:48:32 +00:00
version = "3.0.6";
2020-06-20 12:18:58 +00:00
2021-04-23 12:44:17 +00:00
src = fetchFromGitHub {
owner = "Kozea";
repo = "Radicale";
rev = version;
sha256 = "1xlsvrmx6jhi71j6j8z9sli5vwxasivzjyqf8zq8r0l5p7350clf";
2020-06-20 12:18:58 +00:00
};
2021-04-23 12:44:17 +00:00
postPatch = ''
sed -i '/addopts/d' setup.cfg
'';
2020-06-20 12:18:58 +00:00
propagatedBuildInputs = with python3.pkgs; [
defusedxml
passlib
vobject
python-dateutil
setuptools
];
checkInputs = with python3.pkgs; [
2021-04-23 12:44:17 +00:00
pytestCheckHook
2020-06-20 12:18:58 +00:00
waitress
];
2021-04-23 13:13:36 +00:00
passthru.tests = {
inherit (nixosTests) radicale;
};
2020-06-20 12:18:58 +00:00
meta = with lib; {
homepage = "https://www.radicale.org/3.0.html";
description = "CalDAV and CardDAV server";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}