1{ lib, fetchFromGitHub, buildPythonPackage }: 2 3buildPythonPackage { 4 pname = "radicale_infcloud"; 5 version = "2017-07-27"; 6 7 src = fetchFromGitHub { 8 owner = "Unrud"; 9 repo = "RadicaleInfCloud"; 10 rev = "972757bf4c6be8b966ee063e3741ced29ba8169f"; 11 sha256 = "1c9ql9nv8kwi791akwzd19dcqzd916i7yxzbnrismzw4f5bhgzsk"; 12 }; 13 14 doCheck = false; # Tries to import radicale, circular dependency 15 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 }; 23}