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 {
|
2016-10-08 09:09:55 +02:00
|
|
|
version = "0.13.1";
|
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";
|
2016-10-08 09:09:55 +02:00
|
|
|
sha256 = "1c4kipcc7dx1rn5j1a1x7wckz09mm9ihwakf3ramwn1y78q5zanb";
|
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
|
|
|
|
requests2
|
|
|
|
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";
|
2016-04-23 22:52:34 +02:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer jgeerds DamienCassou ];
|
2015-05-30 01:26:29 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit;
|
2015-01-30 16:39:51 +01:00
|
|
|
};
|
|
|
|
}
|