Unverified Commit cf188034 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.lsprotocol: 2023.0.1 -> 2025.0.0 (#477297)

parents 59d9a177 23b3b499
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -11,7 +11,15 @@
  versionCheckHook,
}:

python3Packages.buildPythonApplication rec {
let
  pythonPackages = python3Packages.overrideScope (
    self: super: {
      lsprotocol = self.lsprotocol_2023;
      pygls = self.pygls_1;
    }
  );
in
pythonPackages.buildPythonApplication rec {
  pname = "cmake-language-server";
  version = "0.1.11";
  pyproject = true;
@@ -31,12 +39,12 @@ python3Packages.buildPythonApplication rec {
        "CALL_TIMEOUT = 10"
  '';

  build-system = with python3Packages; [
  build-system = with pythonPackages; [
    pdm-backend
  ];
  dontUseCmakeConfigure = true;

  dependencies = with python3Packages; [
  dependencies = with pythonPackages; [
    pygls
  ];

@@ -47,7 +55,7 @@ python3Packages.buildPythonApplication rec {
    cmake-format
    versionCheckHook
  ]
  ++ (with python3Packages; [
  ++ (with pythonPackages; [
    pytest-datadir
    pytestCheckHook
  ]);
+11 −3
Original line number Diff line number Diff line
@@ -6,7 +6,15 @@
  nix-update-script,
}:

python3Packages.buildPythonApplication rec {
let
  pythonPackages = python3Packages.overrideScope (
    self: super: {
      lsprotocol = self.lsprotocol_2023;
      pygls = self.pygls_1;
    }
  );
in
pythonPackages.buildPythonApplication rec {
  pname = "nginx-language-server";
  version = "0.9.0";
  pyproject = true;
@@ -18,7 +26,7 @@ python3Packages.buildPythonApplication rec {
    hash = "sha256-v9+Y8NBvN8HvTdNrK9D9YQuqDB3olIu5LfYapjlVlAM=";
  };

  build-system = with python3Packages; [
  build-system = with pythonPackages; [
    poetry-core
  ];

@@ -26,7 +34,7 @@ python3Packages.buildPythonApplication rec {
    "pydantic"
  ];

  dependencies = with python3Packages; [
  dependencies = with pythonPackages; [
    crossplane
    lsprotocol
    pydantic
+12 −4
Original line number Diff line number Diff line
@@ -6,7 +6,15 @@
  pandoc,
}:

python3Packages.buildPythonApplication rec {
let
  pythonPackages = python3Packages.overrideScope (
    self: super: {
      lsprotocol = self.lsprotocol_2023;
      pygls = self.pygls_1;
    }
  );
in
pythonPackages.buildPythonApplication rec {
  pname = "systemd-language-server";
  version = "0.3.5";
  pyproject = true;
@@ -18,14 +26,14 @@ python3Packages.buildPythonApplication rec {
    hash = "sha256-QRd2mV4qRh4OfVJ2/5cOm3Wh8ydsLTG9Twp346DHjs0=";
  };

  build-system = with python3Packages; [
  build-system = with pythonPackages; [
    poetry-core
  ];

  pythonRelaxDeps = [
    "lxml"
  ];
  dependencies = with python3Packages; [
  dependencies = with pythonPackages; [
    lxml
    pygls
  ];
@@ -34,7 +42,7 @@ python3Packages.buildPythonApplication rec {

  nativeCheckInputs = [
    pandoc
    python3Packages.pytestCheckHook
    pythonPackages.pytestCheckHook
  ];

  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
+14 −6
Original line number Diff line number Diff line
@@ -6,7 +6,15 @@
  versionCheckHook,
}:

python3Packages.buildPythonApplication rec {
let
  pythonPackages = python3Packages.overrideScope (
    self: super: {
      lsprotocol = self.lsprotocol_2023;
      pygls = self.pygls_1;
    }
  );
in
pythonPackages.buildPythonApplication rec {
  pname = "tclint";
  version = "0.7.0";
  pyproject = true;
@@ -18,7 +26,7 @@ python3Packages.buildPythonApplication rec {
    hash = "sha256-GkWQlOmPh/IpkdcNKkaHJoVDD2r5wCSFeMZA96dxiXM=";
  };

  build-system = with python3Packages; [
  build-system = with pythonPackages; [
    setuptools
    setuptools-scm
  ];
@@ -27,12 +35,12 @@ python3Packages.buildPythonApplication rec {
    "importlib-metadata"
    "pathspec"
  ];
  dependencies = with python3Packages; [
  dependencies = with pythonPackages; [
    importlib-metadata
    pathspec
    ply
    pygls_1
    lsprotocol_2023
    pygls
    lsprotocol
    tomli
    voluptuous
  ];
@@ -41,7 +49,7 @@ python3Packages.buildPythonApplication rec {

  nativeCheckInputs = [
    addBinToPathHook
    python3Packages.pytestCheckHook
    pythonPackages.pytestCheckHook
    versionCheckHook
  ];
  versionCheckProgramArg = "--version";
+2 −0
Original line number Diff line number Diff line
@@ -91,6 +91,8 @@ let
          "chromadb/test/db/test_migrations.py::test_migrations[sqlite]"
        ];
      });
      lsprotocol = self.lsprotocol_2023;
      pygls = self.pygls_1;
    };
  };
in
Loading