From f4b562359330ba3a312a0d01a3aebdf1a950e821 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 6 Feb 2025 23:48:52 +0100 Subject: [PATCH 1/2] ruff: 0.9.4 -> 0.9.5 Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.9.4...0.9.5 Changelog: https://github.com/astral-sh/ruff/releases/tag/0.9.5 --- pkgs/by-name/ru/ruff/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ru/ruff/package.nix b/pkgs/by-name/ru/ruff/package.nix index 2207d5cc1f23..e1a6077365c0 100644 --- a/pkgs/by-name/ru/ruff/package.nix +++ b/pkgs/by-name/ru/ruff/package.nix @@ -17,17 +17,17 @@ rustPlatform.buildRustPackage rec { pname = "ruff"; - version = "0.9.4"; + version = "0.9.5"; src = fetchFromGitHub { owner = "astral-sh"; repo = "ruff"; tag = version; - hash = "sha256-HUCquxp8U6ZoHNSuUSu56EyiaSRRA8qUMYu6nNibt6w="; + hash = "sha256-VoYV13GsTaAWoLcSfuadLR2l8Xbn0MEd/Uh9EP/DgjE="; }; useFetchCargoVendor = true; - cargoHash = "sha256-EiIN97I72Iam7STjZhHnvVktJXJocnVomjVp8a8t+fM="; + cargoHash = "sha256-d6fLVmg7mbCQqDiNeXRwGHc/a0+RYlmqnkyiUJuM8xY="; nativeBuildInputs = [ installShellFiles ]; From 5aada8286b837e8a6e43cb8cfa4497993e0d4871 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 6 Feb 2025 23:50:49 +0100 Subject: [PATCH 2/2] python312Packages.ruff-lsp: 0.0.60 -> 0.0.61 Diff: https://github.com/astral-sh/ruff-lsp/compare/refs/tags/v0.0.60...v0.0.61 Changelog: https://github.com/astral-sh/ruff-lsp/releases/tag/v0.0.61 --- pkgs/by-name/ru/ruff-lsp/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ru/ruff-lsp/package.nix b/pkgs/by-name/ru/ruff-lsp/package.nix index 7c65ab4336d8..e29469ca5c82 100644 --- a/pkgs/by-name/ru/ruff-lsp/package.nix +++ b/pkgs/by-name/ru/ruff-lsp/package.nix @@ -12,29 +12,29 @@ python3Packages.buildPythonApplication rec { pname = "ruff-lsp"; - version = "0.0.60"; + version = "0.0.61"; pyproject = true; src = fetchFromGitHub { owner = "astral-sh"; repo = "ruff-lsp"; tag = "v${version}"; - hash = "sha256-Qo2pzDjdlhIpKfldPbL9VsO1AaSc1bW5t1i1Nqu7alA="; + hash = "sha256-gyrmustYJAwjO7YbBl76f/IvcEy2ffb9Se7idcyxsYg="; }; build-system = with python3Packages; [ hatchling ]; dependencies = with python3Packages; [ + lsprotocol packaging pygls - lsprotocol ruff typing-extensions ]; nativeCheckInputs = with python3Packages; [ - pytestCheckHook pytest-asyncio + pytestCheckHook python-lsp-jsonrpc ruff versionCheckHook