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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, python3
, radicale3
}:
2020-01-22 12:18:13 +00:00
let
python = python3.override {
packageOverrides = self: super: {
flask-wtf = super.flask-wtf.overridePythonAttrs (old: rec {
version = "0.15.1";
src = old.src.override {
inherit version;
sha256 = "ff177185f891302dc253437fe63081e7a46a4e99aca61dfe086fb23e54fff2dc";
};
});
};
};
in python.pkgs.buildPythonApplication rec {
2020-01-22 12:18:13 +00:00
pname = "etesync-dav";
version = "0.32.1";
2020-01-22 12:18:13 +00:00
src = python.pkgs.fetchPypi {
2020-01-22 12:18:13 +00:00
inherit pname version;
sha256 = "a4e2ee83932755d29ac39c1e74005ec289880fd2d4d2164f09fe2464a294d720";
2020-01-22 12:18:13 +00:00
};
propagatedBuildInputs = with python.pkgs; [
2020-11-30 21:10:07 +00:00
etebase
2020-01-22 12:18:13 +00:00
etesync
flask
flask-wtf
(python.pkgs.toPythonModule (radicale3.override { python3 = python; }))
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
};
}