2016-10-08 09:09:55 +02:00
|
|
|
{ stdenv, fetchurl, python3Packages, glibcLocales }:
|
2015-01-30 16:39:51 +01:00
|
|
|
|
2016-03-13 08:37:57 +01:00
|
|
|
# Packaging documentation at:
|
|
|
|
# https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst
|
2016-10-08 09:09:55 +02:00
|
|
|
let
|
|
|
|
pythonPackages = python3Packages;
|
|
|
|
in
|
2016-02-19 13:12:11 +01:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2017-10-31 16:22:38 +01:00
|
|
|
version = "0.16.3";
|
2015-01-30 16:39:51 +01:00
|
|
|
name = "vdirsyncer-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-05-26 09:44:53 +02:00
|
|
|
url = "mirror://pypi/v/vdirsyncer/${name}.tar.gz";
|
2017-10-31 16:22:38 +01:00
|
|
|
sha256 = "0dpwbfi97ksijqng191659m8k0v215y8ld95w8gb126m4m96qpzw";
|
2015-01-30 16:39:51 +01:00
|
|
|
};
|
|
|
|
|
2015-05-30 01:03:48 +02:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2015-10-28 17:11:40 +01:00
|
|
|
click click-log click-threading
|
2015-01-30 16:39:51 +01:00
|
|
|
requests_toolbelt
|
2017-05-07 12:55:45 +02:00
|
|
|
requests
|
2017-10-29 09:31:15 +01:00
|
|
|
requests_oauthlib # required for google oauth sync
|
2015-01-30 16:39:51 +01:00
|
|
|
atomicwrites
|
|
|
|
];
|
|
|
|
|
2016-03-13 08:37:57 +01:00
|
|
|
buildInputs = with pythonPackages; [hypothesis pytest pytest-localserver pytest-subtesthack setuptools_scm ] ++ [ glibcLocales ];
|
|
|
|
|
|
|
|
LC_ALL = "en_US.utf8";
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
make DETERMINISTIC_TESTS=true test
|
|
|
|
'';
|
2016-02-18 16:48:59 +01:00
|
|
|
|
2015-05-30 01:26:29 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-03-24 17:30:52 +01:00
|
|
|
homepage = https://github.com/pimutils/vdirsyncer;
|
2015-01-30 16:39:51 +01:00
|
|
|
description = "Synchronize calendars and contacts";
|
2017-01-31 11:00:14 +01:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
|
2015-05-30 01:26:29 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit;
|
2015-01-30 16:39:51 +01:00
|
|
|
};
|
|
|
|
}
|