1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/tools/misc/vdirsyncer/default.nix
2015-05-30 01:26:45 +02:00

31 lines
752 B
Nix

{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec {
version = "0.4.3";
name = "vdirsyncer-${version}";
namePrefix = "";
src = fetchurl {
url = "https://github.com/untitaker/vdirsyncer/archive/${version}.tar.gz";
sha256 = "0jrxmq8lq0dvqflmh42hhyvc3jjrg1cg3gzfhdcsskj9zz0m6wai";
};
propagatedBuildInputs = with pythonPackages; [
icalendar
click
lxml
setuptools
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;
};
}