mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #186815 from Matoking/fix-vim-isort
vimPlugins.vim-isort: fix build
This commit is contained in:
commit
cc9c837aa2
1 changed files with 1 additions and 1 deletions
|
@ -1103,7 +1103,7 @@ self: super: {
|
|||
vim-isort = super.vim-isort.overrideAttrs (old: {
|
||||
postPatch = ''
|
||||
substituteInPlace ftplugin/python_vimisort.vim \
|
||||
--replace 'import vim' 'import vim; import sys; sys.path.append("${python2.pkgs.isort}/${python2.sitePackages}")'
|
||||
--replace 'import vim' 'import vim; import sys; sys.path.append("${python3.pkgs.isort}/${python3.sitePackages}")'
|
||||
'';
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue