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

31 lines
757 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages }:
2015-01-30 16:39:51 +01:00
pythonPackages.buildPythonPackage rec {
2015-06-18 14:40:11 +02:00
version = "0.5.2";
2015-01-30 16:39:51 +01:00
name = "vdirsyncer-${version}";
namePrefix = "";
src = fetchurl {
2015-03-07 15:36:02 +01:00
url = "https://github.com/untitaker/vdirsyncer/archive/${version}.tar.gz";
2015-06-18 14:40:11 +02:00
sha256 = "02k6ijj0z0r08l50ignm2ngd4ax84l0r1wshh1is0wcfr70d94h9";
2015-01-30 16:39:51 +01:00
};
propagatedBuildInputs = with pythonPackages; [
2015-01-30 16:39:51 +01:00
click
lxml
setuptools
2015-06-18 14:40:11 +02:00
setuptools_scm
2015-01-30 16:39:51 +01:00
requests_toolbelt
requests2
atomicwrites
];
meta = with stdenv.lib; {
2015-01-30 16:39:51 +01: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 16:39:51 +01:00
};
}