summary refs log tree commit diff
path: root/pkgs/tools/misc/vdirsyncer/default.nix
blob: 5312445563a6ae453c3358d17e6bfe270d750e26 (plain) (blame)
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
{ lib, fetchurl, pythonPackages }:

pythonPackages.buildPythonPackage rec {
  version = "0.4.3";
  name = "vdirsyncer-${version}";
  namePrefix = "";

  src = fetchurl {
    url = "https://github.com/untitaker/vdirsyncer/archive/${version}.tar.gz";
    sha256 = "0jrxmq8lq0dvqflmh42hhyvc3jjrg1cg3gzfhdcsskj9zz0m6wai";
  };

  pythonPath = with pythonPackages; [
    icalendar
    click
    requests
    lxml
    setuptools
    requests_toolbelt
    requests2
    atomicwrites
  ];

  meta = {
    homepage = https://github.com/untitaker/vdirsyncer;
    description = "Synchronize calendars and contacts";
    maintainers = [ lib.maintainers.matthiasbeyer ];
    platforms = lib.platforms.all;
    license = lib.licenses.mit;
  };
}