mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
plugins/lsp/pylsp: fix python-lsp-server derivation
This commit is contained in:
parent
b9f211bbee
commit
e1b7b4e52d
1 changed files with 2 additions and 2 deletions
|
@ -611,7 +611,7 @@ in {
|
||||||
sed -i '/python-lsp-server/d' pyproject.toml
|
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
|
# This is the final default package for pylsp
|
||||||
pkgs.python3Packages.python-lsp-server.overridePythonAttrs (
|
pkgs.python3Packages.python-lsp-server.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
propagatedBuildInputs = pylspPlugins ++ old.propagatedBuildInputs;
|
propagatedBuildInputs = pylspPlugins ++ old.dependencies;
|
||||||
disabledTests =
|
disabledTests =
|
||||||
(old.disabledTests or [])
|
(old.disabledTests or [])
|
||||||
++ [
|
++ [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue