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

32 lines
731 B
Nix
Raw Normal View History

2015-01-30 15:39:51 +00:00
{ lib, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec {
2015-03-07 14:36:02 +00:00
version = "0.4.3";
2015-01-30 15:39:51 +00:00
name = "vdirsyncer-${version}";
namePrefix = "";
src = fetchurl {
2015-03-07 14:36:02 +00:00
url = "https://github.com/untitaker/vdirsyncer/archive/${version}.tar.gz";
sha256 = "0jrxmq8lq0dvqflmh42hhyvc3jjrg1cg3gzfhdcsskj9zz0m6wai";
2015-01-30 15:39:51 +00:00
};
propagatedBuildInputs = with pythonPackages; [
2015-01-30 15:39:51 +00:00
icalendar
click
lxml
setuptools
requests_toolbelt
requests2
atomicwrites
];
meta = {
homepage = https://github.com/untitaker/vdirsyncer;
description = "Synchronize calendars and contacts";
maintainers = [ lib.maintainers.matthiasbeyer ];
platforms = lib.platforms.all;
license = lib.licenses.mit;
};
}