vdirsyncer: 0.8.1 -> 0.9.0

This commit is contained in:
Damien Cassou 2016-02-18 16:48:59 +01:00
parent 885acea1dd
commit 38f0628928

View File

@ -1,13 +1,13 @@
{ stdenv, fetchurl, pythonPackages }: { stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec { pythonPackages.buildPythonPackage rec {
version = "0.8.1"; version = "0.9.0";
name = "vdirsyncer-${version}"; name = "vdirsyncer-${version}";
namePrefix = ""; namePrefix = "";
src = fetchurl { src = fetchurl {
url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz"; url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz";
sha256 = "1abflqw6x30xd2dlj58cr5n62x98kc0ia9f9vr8l64k2z1fjlq78"; sha256 = "0s9awjr9v60rr80xcpwmdhkf4v1yqnydahjmxwvxmh64565is465";
}; };
propagatedBuildInputs = with pythonPackages; [ propagatedBuildInputs = with pythonPackages; [
@ -20,6 +20,11 @@ pythonPackages.buildPythonPackage rec {
atomicwrites atomicwrites
]; ];
# Unfortunately, checking this package seems a bit too complex
# https://github.com/NixOS/nixpkgs/pull/13098#issuecomment-185914025
# https://github.com/untitaker/vdirsyncer/issues/334#issuecomment-185872854
doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/untitaker/vdirsyncer; homepage = https://github.com/untitaker/vdirsyncer;
description = "Synchronize calendars and contacts"; description = "Synchronize calendars and contacts";