Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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
|
|
};
|
|
}
|