Merge pull request #29525 from aneeshusa/radicale_infcloud-init
radicale_infcloud: init
This commit is contained in:
commit
06de6d59b0
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "radicale_infcloud";
|
||||
name = "${pname}-${version}";
|
||||
version = "2017-07-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Unrud";
|
||||
repo = "RadicaleInfCloud";
|
||||
rev = "972757bf4c6be8b966ee063e3741ced29ba8169f";
|
||||
sha256 = "1c9ql9nv8kwi791akwzd19dcqzd916i7yxzbnrismzw4f5bhgzsk";
|
||||
};
|
||||
|
||||
doCheck = false; # Tries to import radicale, circular dependency
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/Unrud/RadicaleInfCloud/;
|
||||
description = "Integrate InfCloud into Radicale's web interface";
|
||||
license = with licenses; [ agpl3 gpl3 ];
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ aneeshusa ];
|
||||
};
|
||||
}
|
@ -18182,6 +18182,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
radicale_infcloud = callPackage ../development/python-modules/radicale_infcloud {};
|
||||
|
||||
recaptcha_client = buildPythonPackage rec {
|
||||
name = "recaptcha-client-1.0.6";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user