-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix neovim PYTHONPATH handling #43388
Conversation
cc @manveru @garbas @rvolosatovs as maintainers |
I love this change, thanks for fixing this, since I couldn't figure out a sane way to solve this issue. |
Why set I think overall it is a good change, and I don't object to it. |
There are a lot of neovim plugins written in python, and that was the only way I could get them to work more or less reliably, no matter what python version was in my environment at the time. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
}; | ||
pythonEnv = pythonPackages.python.withPackages(ps: | ||
(if withPyGUI then [ ps.neovim_gui ] else [ ps.neovim ]) | ||
++ (extraPythonPackagesFun ps) ++ pluginPythonPackages); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will not work yet with pluginPythonPackages
since ps
is not passed to pluginPythonPackages
. pluginPythonPackages also does not work with vim's own package manager. We only have one plugin that is using this mechanism - should it be removed for the moment? It is also not implemented for vim8.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum I think it still works, but indeed adding a plugin from stable will not work with neovim from unstable. I'll try to adapt it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum does anyone have an example of how to use the configure argument of the wrapper ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm using it here: https://github.com/manveru/vimrc/blob/master/default.nix
Indeed this way the issue disappears. But for example, I discovered this issue with pypi2nix, so current tooling sometimes uses PYTHONPATH. |
I pushed a commit making ensime-vim.pythonDependencies a function as well. let
pkgs = import ./default.nix {};
config = {
packages.myVimPackage = with pkgs.vimPlugins; {
start = [ ensime-vim ];
};
};
neovim = pkgs.neovim.override {
configure = config;
};
in
neovim Note that this didn't work before, python dependencies were only taken into account for vam and pathogen plugins. |
This solves the following bug: opening neovim in nix-shell -p pythonPackages.numpy does not enable to run successfully :!python -c "import numpy" because the PYTHONPATH is wiped by the neovim wrapper. This wiping is necessary for the python providers, though, otherwise a python2 nix-shell will make the python3 provider read python2 files. We wrap the providers only, instead of neovim as whole.
They are both as powerful, but buildEnv is treacherous: if you pass a package which depends on another python (for example the one of unstable when you are on stable) it will be *silently* dropped, leading to hair pulling. Use case: override neovim from unstable, but still keep stable's pythonPackages.
908ab1c
to
53bd547
Compare
I have resolved the merge conflict and but only tested a little. |
A function of the same signature as the argument of python.withPackages
53bd547
to
dddaa94
Compare
Anything I should change or can this be merged ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me! I'll let someone with more familiarity with neovim merge though.
cc @FRidh |
@GrahamcOfBorg build vimPlugins.ensime-vim neovim-qt |
Failure on aarch64-linux (full log) Attempted: vimPlugins.ensime-vim, neovim-qt Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: vimPlugins.ensime-vim, neovim-qt Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: vimPlugins.ensime-vim, neovim-qt Partial log (click to expand)
|
failure on aarch64 is unrelated, has been there for a while: https://hydra.nixos.org/job/nixpkgs/trunk/neovim-unwrapped.aarch64-linux |
Motivation for this change
These are two more or less independent improvements to the neovim wrapper.
1st commit:
this will fail to see numpy.
This is because the neovim wrapper unsets PYTHONPATH.
With this fix, I checked that
:checkhealth
is fine with and without extraPythonPackages and within and out of a nix-shell modifying the PYTHONPATH.2nd commit:
During testing the above fix, I built my system config with an overlay using the neovim from my nixpkgs checkout. I override this wrapper with a few
extraPythonPackages
. But these packages disappeared completely. They were not even a dependency of neovim. Indeed, a python module from stable will be silently ignored by unstablepython.buildEnv
.nixpkgs/pkgs/top-level/python-packages.nix
Lines 89 to 98 in f601ecf
nixpkgs/pkgs/development/interpreters/python/wrapper.nix
Line 12 in f601ecf
python.withPackages is just as powerful as python.buildEnv but not so treacherous, and I lost enough time with this, so I switched to python.withPackages.
This changes the type of
extraPython{,3}Packages
but in a backward compatible way.Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)