nixpkgs/pkgs/by-name/ru/ruff-lsp/package.nix

77 lines
1.7 KiB
Nix

{
lib,
python3Packages,
fetchFromGitHub,
# nativeCheckInputs
ruff,
# tests
versionCheckHook,
# passthru
nix-update-script,
}:
python3Packages.buildPythonApplication rec {
pname = "ruff-lsp";
version = "0.0.58";
pyproject = true;
src = fetchFromGitHub {
owner = "astral-sh";
repo = "ruff-lsp";
rev = "refs/tags/v${version}";
hash = "sha256-TB4OcKkaUGYAmiGNJRnfRmiXTyTQL4sFoBrzxT6DWec=";
};
postPatch = ''
# ruff binary added to PATH in wrapper so it's not needed
sed -i '/"ruff>=/d' pyproject.toml
'';
build-system = with python3Packages; [ hatchling ];
dependencies = with python3Packages; [
packaging
pygls
lsprotocol
typing-extensions
];
nativeCheckInputs = with python3Packages; [
pytestCheckHook
pytest-asyncio
python-lsp-jsonrpc
ruff
versionCheckHook
];
versionCheckProgramArg = [ "--version" ];
makeWrapperArgs = [
# prefer ruff from user's PATH, that's usually desired behavior
"--suffix PATH : ${lib.makeBinPath [ ruff ]}"
# Unset ambient PYTHONPATH in the wrapper, so ruff-lsp only ever runs with
# its own, isolated set of dependencies. This works because the correct
# PYTHONPATH is set in the Python script, which runs after the wrapper.
"--unset PYTHONPATH"
];
passthru = {
updateScript = nix-update-script { };
};
meta = {
changelog = "https://github.com/astral-sh/ruff-lsp/releases/tag/v${version}";
description = "Language Server Protocol implementation for Ruff";
homepage = "https://github.com/astral-sh/ruff-lsp";
license = lib.licenses.mit;
mainProgram = "ruff-lsp";
maintainers = with lib.maintainers; [
figsoda
kalekseev
];
};
}