Merge pull request #287723 from GaetanLepage/ruff

ruff: 0.1.15 -> 0.2.1
This commit is contained in:
Nick Cao 2024-02-11 09:50:31 -05:00 committed by GitHub
commit 0915a6c25a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,7 @@
{ lib
, rustPlatform
, fetchFromGitHub
, fetchpatch
, installShellFiles
, stdenv
, darwin
@ -10,15 +11,24 @@
rustPlatform.buildRustPackage rec {
pname = "ruff";
version = "0.1.15";
version = "0.2.1";
src = fetchFromGitHub {
owner = "astral-sh";
repo = "ruff";
rev = "refs/tags/v${version}";
hash = "sha256-DzdzMO9PEwf4HmpG8SxRJTmdrmkXuQ8RsIchvsKstH8=";
hash = "sha256-VcDDGi6fPGZ75+J7aOSr7S6Gt5bpr0vM2Sk/Utlmf4k=";
};
patches = [
# TODO: remove at next release
(fetchpatch {
name = "filter-out-test-rules-in-ruleselector-json-schema";
url = "https://github.com/astral-sh/ruff/commit/49c5e715f9c85aa8d0412b2ec9b1dd6f7ae24c5c.patch";
hash = "sha256-s0Nv5uW3TKfKgro3V3E8Q0c8uOTgOKZQx9CxXge4YWE=";
})
];
# The following specific substitution is not working as the current directory is `/build/source` and thus has no mention of `ruff` in it.
# https://github.com/astral-sh/ruff/blob/866bea60a5de3c59d2537b0f3a634ae0ac9afd94/crates/ruff/tests/show_settings.rs#L12
# -> Just patch it so that it expects the actual current directory and not `"[BASEPATH]"`.
@ -27,7 +37,7 @@ rustPlatform.buildRustPackage rec {
--replace '"[BASEPATH]"' '"'$PWD'"'
'';
cargoHash = "sha256-MpiWdNUs66OGYfOJo1kJQTCqjrk/DAYecaLf6GUUKew=";
cargoHash = "sha256-B7AiDNWEN4i/Lz9yczlRNXczQph52SMa3pcxK2AtO2A=";
nativeBuildInputs = [
installShellFiles