Unverified Commit b536f7a9 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents cb55c725 8488f9a2
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
{
  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 = {