depot/third_party/nixpkgs/pkgs/development/tools/language-servers/ruff-lsp/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

70 lines
1.5 KiB
Nix

{ lib
, stdenv
, pythonOlder
, buildPythonPackage
, fetchPypi
, ruff
, pygls
, lsprotocol
, hatchling
, typing-extensions
, pytestCheckHook
, python-lsp-jsonrpc
, pytest-asyncio
}:
buildPythonPackage rec {
pname = "ruff-lsp";
version = "0.0.35";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit version;
pname = "ruff_lsp";
hash = "sha256-qRNpswpQitvVczFBKsUFlew+W1uEjtkbWnmwBRUHq0w=";
};
postPatch = ''
# ruff binary added to PATH in wrapper so it's not needed
sed -i '/"ruff>=/d' pyproject.toml
'';
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
pygls
lsprotocol
typing-extensions
];
# fails in linux sandbox
doCheck = stdenv.isDarwin;
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
python-lsp-jsonrpc
ruff
];
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"
];
meta = with lib; {
description = "A Language Server Protocol implementation for Ruff";
homepage = "https://github.com/astral-sh/ruff-lsp";
changelog = "https://github.com/astral-sh/ruff-lsp/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda kalekseev ];
};
}