vim-beancount: fix broken

Runtime dependency on python3 'beancount' package needed
for autocompletion engine.

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
This commit is contained in:
Sirio Balmelli 2020-05-03 03:00:58 +02:00 committed by Jon
parent 10b552532f
commit d5b6a9c6de

View file

@ -556,6 +556,10 @@ self: super: {
dependencies = with super; [ vim-maktaba ];
});
vim-beancount = super.vim-beancount.overrideAttrs(old: {
passthru.python3Dependencies = ps: with ps; [ beancount ];
});
vim-codefmt = super.vim-codefmt.overrideAttrs(old: {
dependencies = with super; [ vim-maktaba ];
});