systemd-language-server: fix by relaxing lxlm dependency (#438759)

This commit is contained in:
Gaétan Lepage
2025-08-31 02:08:17 +02:00
committed by GitHub
@@ -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 = {