2021-01-16 13:33:10 +00:00
|
|
|
{ lib, stdenv, python3Packages, radicale3 }:
|
2020-01-22 12:18:13 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "etesync-dav";
|
2021-08-11 19:31:13 +01:00
|
|
|
version = "0.30.8";
|
2020-01-22 12:18:13 +00:00
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-11 19:31:13 +01:00
|
|
|
sha256 = "sha256-HBLQsq3B6TMdcnUt8ukbk3+S0Ed44+gePkpuGZ2AyC4=";
|
2020-01-22 12:18:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2020-11-30 21:10:07 +00:00
|
|
|
etebase
|
2020-01-22 12:18:13 +00:00
|
|
|
etesync
|
|
|
|
flask
|
|
|
|
flask_wtf
|
2020-07-20 21:49:06 +01:00
|
|
|
radicale3
|
2020-01-22 12:18:13 +00:00
|
|
|
];
|
|
|
|
|
2020-11-30 21:10:07 +00:00
|
|
|
doCheck = false;
|
2020-01-22 12:18:13 +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-01-16 13:33:10 +00:00
|
|
|
broken = stdenv.isDarwin; # pyobjc-framework-Cocoa is missing
|
2020-01-22 12:18:13 +00:00
|
|
|
};
|
|
|
|
}
|