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

30 lines
742 B
Nix
Raw Normal View History

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