biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / etesync-dav / default.nix
blob1758dde546eaca0d0fa2ffe430d77073ce90f2f8
1 { lib
2 , stdenv
3 , nixosTests
4 , python3
5 , fetchFromGitHub
6 , radicale3
7 }:
9 python3.pkgs.buildPythonApplication {
10   pname = "etesync-dav";
11   version = "0.32.1-unstable-2024-09-02";
13   src = fetchFromGitHub {
14     owner = "etesync";
15     repo = "etesync-dav";
16     rev = "b9b23bf6fba60d42012008ba06023bccd9109c08";
17     hash = "sha256-wWhwnOlwE1rFgROTSj90hlSw4k48fIEdk5CJOXoecuQ=";
18   };
20   propagatedBuildInputs = with python3.pkgs; [
21     appdirs
22     etebase
23     etesync
24     flask
25     flask-wtf
26     msgpack
27     setuptools
28     (python.pkgs.toPythonModule (radicale3.override { python3 = python; }))
29     requests
30     types-setuptools
31   ] ++ requests.optional-dependencies.socks;
33   doCheck = false;
35   passthru.tests = {
36     inherit (nixosTests) etesync-dav;
37   };
39   meta = with lib; {
40     homepage = "https://www.etesync.com/";
41     description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks";
42     mainProgram = "etesync-dav";
43     license = licenses.gpl3;
44     maintainers = with maintainers; [ thyol valodim ];
45     broken = stdenv.hostPlatform.isDarwin; # pyobjc-framework-Cocoa is missing
46   };