Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / radicale-infcloud / default.nix
bloba59b8221f5d83e6b75f3677dd590c1a801d6e4aa
1 { lib, fetchFromGitHub, buildPythonPackage, radicale }:
3 buildPythonPackage {
4   pname = "radicale-infcloud";
5   version = "unstable-2022-04-18";
6   format = "setuptools";
8   src = fetchFromGitHub {
9     owner = "Unrud";
10     repo = "RadicaleInfCloud";
11     rev = "53d3a95af5b58cfa3242cef645f8d40c731a7d95";
12     hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
13   };
15   propagatedBuildInputs = [ radicale ];
17   # has no tests
18   doCheck = false;
20   pythonImportsCheck = [ "radicale" ];
22   meta = with lib; {
23     homepage = "https://github.com/Unrud/RadicaleInfCloud/";
24     description = "Integrate InfCloud into Radicale's web interface";
25     license = with licenses; [ agpl3Plus gpl3 ];
26     maintainers = with maintainers; [ erictapen ];
27   };