Unverified Commit c00d4c9b authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

python3Packages.lsp-tree-sitter: 0.0.18 -> 0.1.1 (#459340)

parents aff50c7f 11e6cfbb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "autotools-language-server";
  version = "0.0.22";
  version = "0.0.23";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Freed-Wu";
    repo = "autotools-language-server";
    tag = version;
    hash = "sha256-PvaEcdvUE8QpxKuW65RL8SgDl/RM/C3HTEK3v+YA73c=";
    hash = "sha256-cehiqxst3iGpR2UnkpN7wVAxd924n0ZNek3aiwEW+ZA=";
  };

  build-system = [
+2 −3
Original line number Diff line number Diff line
@@ -21,13 +21,13 @@

stdenv.mkDerivation {
  pname = "ycmd";
  version = "0-unstable-2025-06-16";
  version = "0-unstable-2025-10-24";

  # required for third_party directory creation
  src = fetchFromGitHub {
    owner = "ycm-core";
    repo = "ycmd";
    rev = "9160b4eee67ea61c8501bad36d061bcec5340021";
    rev = "7895484ad55e0cbd0686e882891d59661f183476";
    hash = "sha256-MSzYX1vXuhd4TNxUfHWaRu7O0r89az1XjZBIZ6B3gBk=";
    fetchSubmodules = true;
  };
@@ -50,7 +50,6 @@ stdenv.mkDerivation {
    ++ [
      jedi
      jedi-language-server
      pybind11
    ];

  buildPhase = ''
+10 −12
Original line number Diff line number Diff line
@@ -11,19 +11,20 @@
  # dependencies
  docstring-to-markdown,
  jedi,
  lsprotocol,
  pydantic,
  pygls,
  lsprotocol_2025,
  cattrs,
  pygls_2,

  # tests
  pytestCheckHook,
  pyhamcrest,
  python-lsp-jsonrpc,
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
  pname = "jedi-language-server";
  version = "0.45.1";
  version = "0.46.0";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -32,7 +33,7 @@ buildPythonPackage rec {
    owner = "pappasam";
    repo = "jedi-language-server";
    tag = "v${version}";
    hash = "sha256-uO7+ui9FEeMF4sC/jI91px5wEWecvfJApogFMfwpPEs=";
    hash = "sha256-8B/FYktdWtZvB8Us6zQ3gvx1MxJTzP2xyj1VhnM+Viw=";
  };

  build-system = [
@@ -42,21 +43,18 @@ buildPythonPackage rec {
  dependencies = [
    docstring-to-markdown
    jedi
    lsprotocol
    pydantic
    pygls
    lsprotocol_2025
    cattrs
    pygls_2
  ];

  nativeCheckInputs = [
    pytestCheckHook
    pyhamcrest
    python-lsp-jsonrpc
    writableTmpDirAsHomeHook
  ];

  preCheck = ''
    HOME="$(mktemp -d)"
  '';

  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
    # https://github.com/pappasam/jedi-language-server/issues/313
    "test_publish_diagnostics_on_change"
+4 −4
Original line number Diff line number Diff line
@@ -7,21 +7,21 @@
  colorama,
  jinja2,
  jsonschema,
  pygls,
  pygls_2,
  tree-sitter,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "lsp-tree-sitter";
  version = "0.0.18";
  version = "0.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "neomutt";
    repo = "lsp-tree-sitter";
    tag = version;
    hash = "sha256-Hjl3EASaOWmLZpBxmyelSUTy7jJEIEo77IIQh5DHIbg=";
    hash = "sha256-H5yb33ZsqRtqm1zlnOI0WUfcM2VDKn+qyezmFNtdLGA=";
  };

  build-system = [
@@ -33,7 +33,7 @@ buildPythonPackage rec {
    colorama
    jinja2
    jsonschema
    pygls
    pygls_2
    tree-sitter
  ];
  nativeCheckInputs = [ pytestCheckHook ];
+6 −4
Original line number Diff line number Diff line
@@ -3,20 +3,21 @@
  fetchPypi,
  buildPythonPackage,
  hatchling,
  pygls,
  pygls_2,
  pytestCheckHook,
  pytest-asyncio,
  packaging,
}:

buildPythonPackage rec {
  pname = "pytest-lsp";
  version = "0.4.3";
  version = "1.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit version;
    pname = "pytest_lsp";
    hash = "sha256-ND9r2i+qMg7V/Ld8lCDScDzlZdHRRP6CfjGYp9wpkRw=";
    hash = "sha256-uoyVstl1o2Akn/pXaOHm9E2H0Q73dUBw07MhECckovE=";
  };

  build-system = [
@@ -24,8 +25,9 @@ buildPythonPackage rec {
  ];

  dependencies = [
    pygls
    pygls_2
    pytest-asyncio
    packaging
  ];

  nativeCheckInputs = [
Loading