radicale: pin vobject==0.9.5

This commit is contained in:
Robert Schütz 2018-07-08 10:54:59 +02:00
parent 015d138005
commit 01d6aca3ae

View file

@ -7,7 +7,8 @@ let
python = python3.override {
packageOverrides = self: super: {
# https://github.com/eventable/vobject/issues/112
# Packages pinned in setup.py.
# Starting with next release, a vendored version of vobject will be used.
python-dateutil = super.python-dateutil.overridePythonAttrs (oldAttrs: rec {
version = "2.6.1";
src = oldAttrs.src.override {
@ -15,6 +16,13 @@ let
sha256 = "891c38b2a02f5bb1be3e4793866c8df49c7d19baabf9c1bad62547e0b4866aca";
};
});
vobject = super.vobject.overridePythonAttrs (oldAttrs: rec {
version = "0.9.5";
src = oldAttrs.src.override {
inherit version;
sha256 = "0f56cae196303d875682b9648b4bb43ffc769d2f0f800958e0a506af867b1243";
};
});
};
};