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

29 lines
669 B
Nix
Raw Normal View History

2020-07-20 20:49:06 +00:00
{ lib, python3Packages, radicale3 }:
2020-01-22 12:18:13 +00:00
python3Packages.buildPythonApplication rec {
pname = "etesync-dav";
2020-11-30 21:10:07 +00:00
version = "0.30.6";
2020-01-22 12:18:13 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-11-30 21:10:07 +00:00
sha256 = "0cjz4p3a750fwvrxbzwda0sidw7nscahvppdshbsx49i6qrczpbg";
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 ];
};
}