mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
radicale: pin vobject==0.9.5
This commit is contained in:
parent
015d138005
commit
01d6aca3ae
1 changed files with 9 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
});
|
||||
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue