ruff: 0.9.8 -> 0.9.9 (#385775)

authored by Gaétan Lepage and committed by GitHub 04236f5a 74c80c35

+7 -7
+7 -7
pkgs/by-name/ru/ruff/package.nix
··· 15 nix-update-script, 16 }: 17 18 - rustPlatform.buildRustPackage rec { 19 pname = "ruff"; 20 - version = "0.9.8"; 21 22 src = fetchFromGitHub { 23 owner = "astral-sh"; 24 repo = "ruff"; 25 - tag = version; 26 - hash = "sha256-vsbsKxG2iOu6Pa1PmCGXa2zcYJmIHInnguiiLdW8bK8="; 27 }; 28 29 useFetchCargoVendor = true; 30 - cargoHash = "sha256-XZnKeBSBGa9gMlKq/jCB0Vy3e3rUAu33scbWiDEY8I4="; 31 32 nativeBuildInputs = [ installShellFiles ]; 33 ··· 82 meta = { 83 description = "Extremely fast Python linter and code formatter"; 84 homepage = "https://github.com/astral-sh/ruff"; 85 - changelog = "https://github.com/astral-sh/ruff/releases/tag/${version}"; 86 license = lib.licenses.mit; 87 mainProgram = "ruff"; 88 maintainers = with lib.maintainers; [ ··· 90 GaetanLepage 91 ]; 92 }; 93 - }
··· 15 nix-update-script, 16 }: 17 18 + rustPlatform.buildRustPackage (finalAttrs: { 19 pname = "ruff"; 20 + version = "0.9.9"; 21 22 src = fetchFromGitHub { 23 owner = "astral-sh"; 24 repo = "ruff"; 25 + tag = finalAttrs.version; 26 + hash = "sha256-SPthKFnUdBZwcLZm5EWmjskgdpO1+Llr6QEi8+a1cY0="; 27 }; 28 29 useFetchCargoVendor = true; 30 + cargoHash = "sha256-DNHl04LLKh4hUU4ZmI3UKSrMO7vHL6GjpbxKLYgBQ/A="; 31 32 nativeBuildInputs = [ installShellFiles ]; 33 ··· 82 meta = { 83 description = "Extremely fast Python linter and code formatter"; 84 homepage = "https://github.com/astral-sh/ruff"; 85 + changelog = "https://github.com/astral-sh/ruff/releases/tag/${finalAttrs.version}"; 86 license = lib.licenses.mit; 87 mainProgram = "ruff"; 88 maintainers = with lib.maintainers; [ ··· 90 GaetanLepage 91 ]; 92 }; 93 + })