summaryrefslogtreecommitdiff
path: root/overlays/etesync-dav.nix
blob: 49c77352029ce1c54341c2801148734f223415c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{ final, prev, sources, ... }: {
  etesync-dav = let
    python = final.python3.override {
      packageOverrides = self: super: {
        # flask-wtf = super.flask-wtf.overridePythonAttrs (old: rec {
        #   patches = [];
        #   version = "0.15.1";
        #   src = old.src.override {
        #     inherit version;
        #     sha256 = "ff177185f891302dc253437fe63081e7a46a4e99aca61dfe086fb23e54fff2dc";
        #   };
        #   disabledTests = [
        #     "test_outside_request"
        #   ];
        # });
        # wtforms = super.wtforms.overridePythonAttrs (old: rec {
        #   version = "2.3.3";
        #   src = old.src.override {
        #     inherit version;
        #     sha256 = "81195de0ac94fbc8368abbaf9197b88c4f3ffd6c2719b5bf5fc9da744f3d829c";
        #   };
        #   checkPhase = ''
        #     ${self.python.interpreter} tests/runtests.py
        #   '';
        # });
        etebase = super.wtforms.overridePythonAttrs (old: rec {
          inherit (sources.etebase-py) version src;
        });
      };
    };
  in python.pkgs.buildPythonApplication rec {
    pname = "etesync-dav";
    version = "0.32.1";

    src = python.pkgs.fetchPypi {
      inherit pname version;
      sha256 = "a4e2ee83932755d29ac39c1e74005ec289880fd2d4d2164f09fe2464a294d720";
    };

    propagatedBuildInputs = with python.pkgs; [
      appdirs
      etebase
      etesync
      flask
      flask-wtf
      msgpack
      pysocks
      (python.pkgs.toPythonModule (final.radicale3.override { python3 = python; }))
      requests
    ] ++ requests.optional-dependencies.socks;

    doCheck = false;

    meta = with final.lib; {
      homepage = "https://www.etesync.com/";
      description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks";
      license = licenses.gpl3;
      broken = final.stdenv.isDarwin; # pyobjc-framework-Cocoa is missing
    };
  };
}