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

31 lines
759 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages }:
2015-01-30 15:39:51 +00:00
pythonPackages.buildPythonPackage rec {
2015-08-07 10:16:28 +00:00
version = "0.6.0";
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";
sha256 = "1mb0pws5vsgnmyp5dp5m5jvgl6jcvdamxjz7wmgvxkw6n1vrcahd";
2015-01-30 15:39:51 +00:00
};
propagatedBuildInputs = with pythonPackages; [
2015-01-30 15:39:51 +00:00
click
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
};
}