mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
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:
parent
10b552532f
commit
d5b6a9c6de
|
@ -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 ];
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue