2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, python3Packages, radicale3 }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "etesync-dav";
|
2021-02-05 17:12:51 +00:00
|
|
|
version = "0.30.7";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-05 17:12:51 +00:00
|
|
|
sha256 = "16b3105834dd6d9e374e976cad0978e1acfed0f0328c5054bc214550aea3e2c5";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2020-12-09 12:39:15 +00:00
|
|
|
etebase
|
2020-04-24 23:36:52 +00:00
|
|
|
etesync
|
|
|
|
flask
|
|
|
|
flask_wtf
|
2020-08-20 17:08:02 +00:00
|
|
|
radicale3
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2020-12-09 12:39:15 +00:00
|
|
|
doCheck = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://www.etesync.com/";
|
|
|
|
description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ valodim ];
|
2021-02-05 17:12:51 +00:00
|
|
|
broken = stdenv.isDarwin; # pyobjc-framework-Cocoa is missing
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|