nixpkgs/pkgs/development/python-modules/python-lsp-ruff/default.nix

81 lines
1.9 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
ruff,
# dependencies
cattrs,
lsprotocol,
python-lsp-server,
tomli,
# checks
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "python-lsp-ruff";
version = "2.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "python-lsp";
repo = "python-lsp-ruff";
tag = "v${version}";
hash = "sha256-jtfDdZ68AroXlmR+AIVk/b3WpZk78BCtT8TUh4ELZZI=";
};
postPatch =
let
ruffBin = lib.getExe ruff;
in
''
substituteInPlace pylsp_ruff/plugin.py \
--replace-fail \
"*find_executable(executable)" \
'"${ruffBin}"'
substituteInPlace tests/test_ruff_lint.py \
--replace-fail "str(sys.executable)" '"${ruffBin}"' \
--replace-fail '"-m",' "" \
--replace-fail '"ruff",' "" \
--replace-fail \
'assert "ruff" in call_args' \
'assert "${ruffBin}" in call_args' \
--replace-fail \
'ruff_executable = ruff_exe.name' \
'ruff_executable = "${ruffBin}"' \
--replace-fail 'os.chmod(ruff_executable, st.st_mode | stat.S_IEXEC)' ""
''
# Nix builds everything in /build/ but ruff somehow doesn't run on files in /build/ and outputs empty results.
+ ''
substituteInPlace tests/*.py \
--replace-fail "workspace.root_path" '"/tmp/"'
'';
pythonRemoveDeps = [
# ruff binary is used directly, the ruff python package is not needed
"ruff"
];
dependencies = [
cattrs
lsprotocol
python-lsp-server
]
++ lib.optionals (pythonOlder "3.11") [ tomli ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
homepage = "https://github.com/python-lsp/python-lsp-ruff";
description = "Ruff linting plugin for pylsp";
changelog = "https://github.com/python-lsp/python-lsp-ruff/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ linsui ];
};
}