anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / radicale-infcloud / default.nix
blob073d5125859e16641ed4163435ec94442fbf81a3
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5   radicale,
6   setuptools,
7 }:
9 buildPythonPackage {
10   pname = "radicale-infcloud";
11   version = "unstable-2022-04-18";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "Unrud";
16     repo = "RadicaleInfCloud";
17     rev = "53d3a95af5b58cfa3242cef645f8d40c731a7d95";
18     hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
19   };
21   build-system = [ setuptools ];
23   dependencies = [ radicale ];
25   # has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "radicale" ];
30   meta = with lib; {
31     homepage = "https://github.com/Unrud/RadicaleInfCloud/";
32     description = "Integrate InfCloud into Radicale's web interface";
33     license = with licenses; [
34       agpl3Plus
35       gpl3Plus
36     ];
37     maintainers = with maintainers; [ erictapen ];
38   };