ruff: 0.6.3 -> 0.6.4 (#339848)

This commit is contained in:
Pol Dellaiera 2024-09-06 23:16:50 +02:00 committed by GitHub
commit b68e5fcba9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 17 additions and 13 deletions

View File

@ -1,9 +1,13 @@
{ {
lib, lib,
stdenv,
python3, python3,
fetchFromGitHub, fetchFromGitHub,
stdenv,
# nativeCheckInputs
ruff, ruff,
# passthru
nix-update-script, nix-update-script,
testers, testers,
ruff-lsp, ruff-lsp,
@ -11,15 +15,14 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "ruff-lsp"; pname = "ruff-lsp";
version = "0.0.55"; version = "0.0.56";
pyproject = true; pyproject = true;
disabled = python3.pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "astral-sh"; owner = "astral-sh";
repo = "ruff-lsp"; repo = "ruff-lsp";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-FFIZ8fDAPK03tnkjd2AUrz7iL8S9FziJQJKOxAisu48="; hash = "sha256-L5bfGW5R9kDCK8zcFh+a/zquJefwKxOB0JdYDTyPFuQ=";
}; };
postPatch = '' postPatch = ''

View File

@ -1803,9 +1803,9 @@ dependencies = [
[[package]] [[package]]
name = "quick-junit" name = "quick-junit"
version = "0.4.0" version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfc1a6a5406a114913df2df8507998c755311b55b78584bed5f6e88f6417c4d4" checksum = "62ffd2f9a162cfae131bed6d9d1ed60adced33be340a94f96952897d7cb0c240"
dependencies = [ dependencies = [
"chrono", "chrono",
"indexmap", "indexmap",
@ -1818,9 +1818,9 @@ dependencies = [
[[package]] [[package]]
name = "quick-xml" name = "quick-xml"
version = "0.31.0" version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" checksum = "96a05e2e8efddfa51a84ca47cec303fac86c8541b686d37cac5efc0e094417bc"
dependencies = [ dependencies = [
"memchr", "memchr",
] ]
@ -1997,6 +1997,7 @@ dependencies = [
"ruff_text_size", "ruff_text_size",
"rustc-hash 2.0.0", "rustc-hash 2.0.0",
"salsa", "salsa",
"tempfile",
"tracing", "tracing",
] ]
@ -2090,7 +2091,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff" name = "ruff"
version = "0.6.3" version = "0.6.4"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"argfile", "argfile",
@ -2283,7 +2284,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff_linter" name = "ruff_linter"
version = "0.6.3" version = "0.6.4"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick",
"annotate-snippets 0.9.2", "annotate-snippets 0.9.2",
@ -2603,7 +2604,7 @@ dependencies = [
[[package]] [[package]]
name = "ruff_wasm" name = "ruff_wasm"
version = "0.6.3" version = "0.6.4"
dependencies = [ dependencies = [
"console_error_panic_hook", "console_error_panic_hook",
"console_log", "console_log",

View File

@ -14,13 +14,13 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ruff"; pname = "ruff";
version = "0.6.3"; version = "0.6.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "astral-sh"; owner = "astral-sh";
repo = "ruff"; repo = "ruff";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-5jS2NCl01kgUAd8hFtjJCOwRxi0XMM2x7VMpJLEgbOQ="; hash = "sha256-AldYWbLtkVtM1sWBCgNym9RZ0QszIh59vQhoysl5/3I=";
}; };
cargoLock = { cargoLock = {