linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / radicale_infcloud / default.nix
blob5d3540e01956057dc91e0fae33a60ca1cb6e860d
1 { lib, fetchFromGitHub, buildPythonPackage }:
3 buildPythonPackage {
4   pname = "radicale_infcloud";
5   version = "2017-07-27";
7   src = fetchFromGitHub {
8     owner = "Unrud";
9     repo = "RadicaleInfCloud";
10     rev = "972757bf4c6be8b966ee063e3741ced29ba8169f";
11     sha256 = "1c9ql9nv8kwi791akwzd19dcqzd916i7yxzbnrismzw4f5bhgzsk";
12   };
14   doCheck = false; # Tries to import radicale, circular dependency
16   meta = with lib; {
17     homepage = "https://github.com/Unrud/RadicaleInfCloud/";
18     description = "Integrate InfCloud into Radicale's web interface";
19     license = with licenses; [ agpl3 gpl3 ];
20     platforms = platforms.all;
21     maintainers = with maintainers; [ aneeshusa ];
22   };