From a41bf37c496e4482d3dd364c64ee04064642569c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 5 Dec 2024 14:35:32 +0100 Subject: [PATCH] ruff: 0.8.1 -> 0.8.2 Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.8.1...0.8.2 Changelog: https://github.com/astral-sh/ruff/releases/tag/0.8.2 --- 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 6fd163a518cd..df10f15fff71 100644 --- a/pkgs/by-name/ru/ruff/package.nix +++ b/pkgs/by-name/ru/ruff/package.nix @@ -16,7 +16,7 @@ python3Packages.buildPythonPackage rec { pname = "ruff"; - version = "0.8.1"; + version = "0.8.2"; pyproject = true; outputs = [ @@ -27,8 +27,8 @@ python3Packages.buildPythonPackage rec { src = fetchFromGitHub { owner = "astral-sh"; repo = "ruff"; - rev = "refs/tags/${version}"; - hash = "sha256-N3TplR+vPu2r56VP/vnOfkxN3Lh2o92kE2hFZKLXO04="; + tag = version; + hash = "sha256-rAIedDjJ1OajxrHS9cgP9sdcTbT7JFbA16jeVsaoEEY="; }; # Do not rely on path lookup at runtime to find the ruff binary @@ -41,7 +41,7 @@ python3Packages.buildPythonPackage rec { cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-iddUzip2LmBMOB+MfpI4k3OitdPbwAZkc4szDPB6duM="; + hash = "sha256-aT1qF7RYytUTLVIM0QDgPesiJPCLwKoARWcIBgwN7C8="; }; nativeBuildInputs =