Skip to content

Commit

Permalink
etesync-dav: 0.32.1-unstable-2024-09-02 -> 0.33.4 (NixOS#361272)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada authored Dec 19, 2024
2 parents 6bcba52 + e8ee2d4 commit ef391f5
Showing 1 changed file with 22 additions and 18 deletions.
40 changes: 22 additions & 18 deletions pkgs/by-name/et/etesync-dav/package.nix
Original file line number Diff line number Diff line change
@@ -1,47 +1,51 @@
{ lib
, stdenv
, nixosTests
, python3
, fetchFromGitHub
, radicale
{
lib,
stdenv,
nixosTests,
python3Packages,
fetchFromGitHub,
radicale,
}:

python3.pkgs.buildPythonApplication {
python3Packages.buildPythonApplication rec {
pname = "etesync-dav";
version = "0.32.1-unstable-2024-09-02";
version = "0.33.4";

src = fetchFromGitHub {
owner = "etesync";
repo = "etesync-dav";
rev = "b9b23bf6fba60d42012008ba06023bccd9109c08";
hash = "sha256-wWhwnOlwE1rFgROTSj90hlSw4k48fIEdk5CJOXoecuQ=";
tag = "v${version}";
hash = "sha256-g+rK762tSWPDaBsaTwpTzfK/lqVs+Z/Qrpq2HCpipQE=";
};

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

doCheck = false;

passthru.tests = {
inherit (nixosTests) etesync-dav;
};

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

0 comments on commit ef391f5

Please sign in to comment.