about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/radicale-infcloud/default.nix
blob: 214c1dcffe87f3154b8809dedb66eff71a81398a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, fetchFromGitHub, buildPythonPackage, radicale }:

buildPythonPackage {
  pname = "radicale-infcloud";
  version = "unstable-2022-04-18";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "Unrud";
    repo = "RadicaleInfCloud";
    rev = "53d3a95af5b58cfa3242cef645f8d40c731a7d95";
    hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
  };

  propagatedBuildInputs = [ radicale ];

  # has no tests
  doCheck = false;

  pythonImportsCheck = [ "radicale" ];

  meta = with lib; {
    homepage = "https://github.com/Unrud/RadicaleInfCloud/";
    description = "Integrate InfCloud into Radicale's web interface";
    license = with licenses; [ agpl3 gpl3 ];
    maintainers = with maintainers; [ erictapen ];
  };
}