nixpkgs/pkgs/applications/misc/etesync-dav/default.nix

30 lines
755 B
Nix
Raw Normal View History

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-01-16 12:30:14 +00:00
version = "0.30.7";
2020-01-22 12:18:13 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2021-01-16 12:30:14 +00:00
sha256 = "16b3105834dd6d9e374e976cad0978e1acfed0f0328c5054bc214550aea3e2c5";
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 20:49:06 +00: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
};
}