1{ stdenv, fetchFromGitHub, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "radicale_infcloud"; 5 name = "${pname}-${version}"; 6 version = "2017-07-27"; 7 8 src = fetchFromGitHub { 9 owner = "Unrud"; 10 repo = "RadicaleInfCloud"; 11 rev = "972757bf4c6be8b966ee063e3741ced29ba8169f"; 12 sha256 = "1c9ql9nv8kwi791akwzd19dcqzd916i7yxzbnrismzw4f5bhgzsk"; 13 }; 14 15 doCheck = false; # Tries to import radicale, circular dependency 16 17 meta = with stdenv.lib; { 18 homepage = https://github.com/Unrud/RadicaleInfCloud/; 19 description = "Integrate InfCloud into Radicale's web interface"; 20 license = with licenses; [ agpl3 gpl3 ]; 21 platforms = platforms.all; 22 maintainers = with maintainers; [ aneeshusa ]; 23 }; 24}