nixpkgs/pkgs/tools/misc/vdirsyncer/default.nix

31 lines
785 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages }:
2015-01-30 15:39:51 +00:00
pythonPackages.buildPythonPackage rec {
2015-11-05 22:40:25 +00:00
version = "0.7.3";
2015-01-30 15:39:51 +00:00
name = "vdirsyncer-${version}";
namePrefix = "";
src = fetchurl {
2015-08-07 10:16:28 +00:00
url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz";
2015-11-05 22:40:25 +00:00
sha256 = "0ahi5ngqwsrv30bgziz35dx4gif7rbn9vqv340pigbzmywjxz1ry";
2015-01-30 15:39:51 +00:00
};
propagatedBuildInputs = with pythonPackages; [
2015-10-28 16:11:40 +00:00
click click-log click-threading
2015-01-30 15:39:51 +00:00
lxml
setuptools
2015-06-18 12:40:11 +00:00
setuptools_scm
2015-01-30 15:39:51 +00:00
requests_toolbelt
requests2
atomicwrites
];
meta = with stdenv.lib; {
2015-01-30 15:39:51 +00:00
homepage = https://github.com/untitaker/vdirsyncer;
description = "Synchronize calendars and contacts";
maintainers = with maintainers; [ matthiasbeyer jgeerds ];
platforms = platforms.all;
license = licenses.mit;
2015-01-30 15:39:51 +00:00
};
}