54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
nixosTests,
|
||
|
|
python3Packages,
|
||
|
|
fetchFromGitHub,
|
||
|
|
radicale,
|
||
|
|
}:
|
||
|
|
python3Packages.buildPythonApplication rec {
|
||
|
|
pname = "etesync-dav";
|
||
|
|
version = "0.35.1";
|
||
|
|
pyproject = true;
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "etesync";
|
||
|
|
repo = "etesync-dav";
|
||
|
|
tag = "v${version}";
|
||
|
|
hash = "sha256-y4BhU2kSn+RWqc5+pJQFhbwfat9cMWD0ED0EXJp25cY=";
|
||
|
|
};
|
||
|
|
|
||
|
|
build-system = with python3Packages; [ setuptools ];
|
||
|
|
|
||
|
|
pythonRelaxDeps = [ "radicale" ];
|
||
|
|
|
||
|
|
dependencies = with python3Packages; [
|
||
|
|
appdirs
|
||
|
|
etebase
|
||
|
|
etesync
|
||
|
|
flask
|
||
|
|
flask-wtf
|
||
|
|
msgpack
|
||
|
|
(python3Packages.toPythonModule (radicale.override { python3 = python; }))
|
||
|
|
requests
|
||
|
|
requests.optional-dependencies.socks
|
||
|
|
];
|
||
|
|
|
||
|
|
doCheck = false;
|
||
|
|
|
||
|
|
passthru.tests = {
|
||
|
|
inherit (nixosTests) etesync-dav;
|
||
|
|
};
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
homepage = "https://www.etesync.com";
|
||
|
|
description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks";
|
||
|
|
mainProgram = "etesync-dav";
|
||
|
|
license = lib.licenses.gpl3Only;
|
||
|
|
maintainers = with lib.maintainers; [
|
||
|
|
valodim
|
||
|
|
];
|
||
|
|
broken = stdenv.hostPlatform.isDarwin; # pyobjc-framework-Cocoa is missing
|
||
|
|
};
|
||
|
|
}
|