lol
1{ stdenv, fetchurl, pythonPackages }:
2
3pythonPackages.buildPythonPackage rec {
4 version = "0.6.0";
5 name = "vdirsyncer-${version}";
6 namePrefix = "";
7
8 src = fetchurl {
9 url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz";
10 sha256 = "1mb0pws5vsgnmyp5dp5m5jvgl6jcvdamxjz7wmgvxkw6n1vrcahd";
11 };
12
13 propagatedBuildInputs = with pythonPackages; [
14 click
15 lxml
16 setuptools
17 setuptools_scm
18 requests_toolbelt
19 requests2
20 atomicwrites
21 ];
22
23 meta = with stdenv.lib; {
24 homepage = https://github.com/untitaker/vdirsyncer;
25 description = "Synchronize calendars and contacts";
26 maintainers = with maintainers; [ matthiasbeyer jgeerds ];
27 platforms = platforms.all;
28 license = licenses.mit;
29 };
30}