vimPlugins.vim-yapf: fix evaluation

This commit is contained in:
Jörg Thalheim 2017-12-09 10:27:16 +00:00
parent 61a177a517
commit f7c7a4cde1
2 changed files with 2 additions and 2 deletions

View File

@ -1273,7 +1273,7 @@ rec {
dependencies = [];
buildPhase = ''
substituteInPlace ftplugin/python_yapf.vim \
--replace '"yapf"' '"${pkgs.yapf}/bin/yapf"'
--replace '"yapf"' '"${python3Packages.yapf}/bin/yapf"'
'';
};

View File

@ -1,4 +1,4 @@
buildPhase = ''
substituteInPlace ftplugin/python_yapf.vim \
--replace '"yapf"' '"${pkgs.yapf}/bin/yapf"'
--replace '"yapf"' '"${python3Packages.yapf}/bin/yapf"'
'';