nixpkgs/pkgs/tools/misc/vdirsyncer/default.nix
2015-10-28 17:11:40 +01:00

31 lines
785 B
Nix

{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec {
version = "0.7.0";
name = "vdirsyncer-${version}";
namePrefix = "";
src = fetchurl {
url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz";
sha256 = "0ahpi62yk6l06zjkpbhw1gp75x3qi9gcvm3yx6xcg5sz105y5yfx";
};
propagatedBuildInputs = with pythonPackages; [
click click-log click-threading
lxml
setuptools
setuptools_scm
requests_toolbelt
requests2
atomicwrites
];
meta = with stdenv.lib; {
homepage = https://github.com/untitaker/vdirsyncer;
description = "Synchronize calendars and contacts";
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
platforms = platforms.all;
license = licenses.mit;
};
}