1 { lib, fetchFromGitHub, python3 }:
3 python3.pkgs.buildPythonApplication rec {
7 # No tests in PyPI tarball
8 src = fetchFromGitHub {
12 sha256 = "14f9ql0fiwapaa4xaslwgk1ah9fzxxan2p1p2rxb4a5iqph1z0cl";
15 # We only want functional tests
17 sed -i "s/pytest-cov\|pytest-flake8\|pytest-isort//g" setup.py
18 sed -i "/^addopts/d" setup.cfg
21 propagatedBuildInputs = with python3.pkgs; [
28 nativeCheckInputs = with python3.pkgs; [
33 # uses unsupported crypt method
38 homepage = "https://radicale.org/v2.html";
39 description = "CalDAV CardDAV server";
40 mainProgram = "radicale";
42 The Radicale Project is a complete CalDAV (calendar) and CardDAV
43 (contact) server solution. Calendars and address books are available for
44 both local and remote access, possibly limited through authentication
45 policies. They can be viewed and edited by calendar and contact clients
46 on mobile phones or computers.
48 license = licenses.gpl3Plus;
49 maintainers = with maintainers; [ edwtjo pSub ];