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-04-25 12:30:54 +02:00
|
|
|
version = "0.15.0";
|
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-04-25 12:30:54 +02:00
|
|
|
sha256 = "08aa5yxcj7ziz2r0hz4p554q8hgpfl2bh8r6r85f4g24mg6arxsj";
|
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
|
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
|
|
|
};
|
|
|
|
}
|