mirror of
https://github.com/nix-community/nixvim.git
synced 2026-09-25 16:50:23 -04:00
plugins/lsp/pylsp: fix python-lsp-server derivation
This commit is contained in:
committed by
Gaétan Lepage
parent
b9f211bbee
commit
e1b7b4e52d
@@ -611,7 +611,7 @@ in {
|
||||
sed -i '/python-lsp-server/d' pyproject.toml
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [setuptools] ++ (old.nativeBuildInputs or []);
|
||||
build-system = [setuptools] ++ (old.build-system or []);
|
||||
});
|
||||
})
|
||||
);
|
||||
@@ -623,7 +623,7 @@ in {
|
||||
# This is the final default package for pylsp
|
||||
pkgs.python3Packages.python-lsp-server.overridePythonAttrs (
|
||||
old: {
|
||||
propagatedBuildInputs = pylspPlugins ++ old.propagatedBuildInputs;
|
||||
propagatedBuildInputs = pylspPlugins ++ old.dependencies;
|
||||
disabledTests =
|
||||
(old.disabledTests or [])
|
||||
++ [
|
||||
|
||||
Reference in New Issue
Block a user