diff --git a/pkgs/by-name/sy/systemd-language-server/package.nix b/pkgs/by-name/sy/systemd-language-server/package.nix index d53e998b8e12..c0b4d6587375 100644 --- a/pkgs/by-name/sy/systemd-language-server/package.nix +++ b/pkgs/by-name/sy/systemd-language-server/package.nix @@ -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 = {