1{ lib, fetchFromGitHub, buildPythonPackage, radicale }:
2
3buildPythonPackage {
4 pname = "radicale_infcloud";
5 version = "unstable-2022-04-18";
6
7 src = fetchFromGitHub {
8 owner = "Unrud";
9 repo = "RadicaleInfCloud";
10 rev = "53d3a95af5b58cfa3242cef645f8d40c731a7d95";
11 hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
12 };
13
14 propagatedBuildInputs = [ radicale ];
15
16 # has no tests
17 doCheck = false;
18
19 pythonImportsCheck = [ "radicale" ];
20
21 meta = with lib; {
22 homepage = "https://github.com/Unrud/RadicaleInfCloud/";
23 description = "Integrate InfCloud into Radicale's web interface";
24 license = with licenses; [ agpl3 gpl3 ];
25 maintainers = with maintainers; [ erictapen ];
26 };
27}