systemd-language-server: fix build

This commit is contained in:
Gaetan Lepage
2025-08-31 01:53:11 +02:00
parent c3713cbb4e
commit 8488f9a28c

View File

@@ -1,5 +1,6 @@
{
lib,
stdenv,
python3Packages,
fetchFromGitHub,
pandoc,
@@ -21,6 +22,9 @@ python3Packages.buildPythonApplication rec {
poetry-core
];
pythonRelaxDeps = [
"lxml"
];
dependencies = with python3Packages; [
lxml
pygls
@@ -33,6 +37,11 @@ python3Packages.buildPythonApplication rec {
python3Packages.pytestCheckHook
];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# TimeoutError
"test_hover"
];
__darwinAllowLocalNetworking = true;
meta = {