42 lines
832 B
Nix
42 lines
832 B
Nix
{ lib, python3, fetchFromGitHub, nixosTests }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "radicale";
|
|
version = "3.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Kozea";
|
|
repo = "Radicale";
|
|
rev = version;
|
|
sha256 = "1xlsvrmx6jhi71j6j8z9sli5vwxasivzjyqf8zq8r0l5p7350clf";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i '/addopts/d' setup.cfg
|
|
'';
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
defusedxml
|
|
passlib
|
|
vobject
|
|
python-dateutil
|
|
setuptools
|
|
];
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
waitress
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) radicale;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.radicale.org/3.0.html";
|
|
description = "CalDAV and CardDAV server";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|