Unverified Commit 16358932 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

ruff: 0.9.4 -> 0.9.5, python312Packages.ruff-lsp: 0.0.60 -> 0.0.61 (#379942)

parents 1ab25a5c 5aada828
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -12,29 +12,29 @@

python3Packages.buildPythonApplication rec {
  pname = "ruff-lsp";
  version = "0.0.60";
  version = "0.0.61";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "astral-sh";
    repo = "ruff-lsp";
    tag = "v${version}";
    hash = "sha256-Qo2pzDjdlhIpKfldPbL9VsO1AaSc1bW5t1i1Nqu7alA=";
    hash = "sha256-gyrmustYJAwjO7YbBl76f/IvcEy2ffb9Se7idcyxsYg=";
  };

  build-system = with python3Packages; [ hatchling ];

  dependencies = with python3Packages; [
    lsprotocol
    packaging
    pygls
    lsprotocol
    ruff
    typing-extensions
  ];

  nativeCheckInputs = with python3Packages; [
    pytestCheckHook
    pytest-asyncio
    pytestCheckHook
    python-lsp-jsonrpc
    ruff
    versionCheckHook
+3 −3
Original line number Diff line number Diff line
@@ -17,17 +17,17 @@

rustPlatform.buildRustPackage rec {
  pname = "ruff";
  version = "0.9.4";
  version = "0.9.5";

  src = fetchFromGitHub {
    owner = "astral-sh";
    repo = "ruff";
    tag = version;
    hash = "sha256-HUCquxp8U6ZoHNSuUSu56EyiaSRRA8qUMYu6nNibt6w=";
    hash = "sha256-VoYV13GsTaAWoLcSfuadLR2l8Xbn0MEd/Uh9EP/DgjE=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-EiIN97I72Iam7STjZhHnvVktJXJocnVomjVp8a8t+fM=";
  cargoHash = "sha256-d6fLVmg7mbCQqDiNeXRwGHc/a0+RYlmqnkyiUJuM8xY=";

  nativeBuildInputs = [ installShellFiles ];