From 4f739e39ba6a8c075e28e457c59fe921ec2b5826 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 23 Jan 2025 21:43:27 +0100 Subject: [PATCH] ruff: 0.9.2 -> 0.9.3 Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.9.2...0.9.3 Changelog: https://github.com/astral-sh/ruff/releases/tag/0.9.3 --- pkgs/by-name/ru/ruff/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ru/ruff/package.nix b/pkgs/by-name/ru/ruff/package.nix index 1873cc36cf02..f87928256351 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.2"; + version = "0.9.3"; src = fetchFromGitHub { owner = "astral-sh"; repo = "ruff"; tag = version; - hash = "sha256-DKDSjiN7Ve/1mHWXoYOIdJ67MRoJYDR59VuVmfwYJHs="; + hash = "sha256-V05GUo5nA6RhVWD7mn94GF3/93In3cnljd2G3hPeBZ0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-eIiR7pvSOZdB1lTPLtdriO9lkufFY/gX5d2ku53g2vE="; + cargoHash = "sha256-FpybUZZ5qjo87fYbUAnK+w4cUPx4UWGzexL92cEnIFU="; nativeBuildInputs = [ installShellFiles ]; @@ -80,7 +80,7 @@ rustPlatform.buildRustPackage rec { }; meta = { - description = "Extremely fast Python linter"; + description = "Extremely fast Python linter and code formatter"; homepage = "https://github.com/astral-sh/ruff"; changelog = "https://github.com/astral-sh/ruff/releases/tag/${version}"; license = lib.licenses.mit;