diff --git a/pkgs/development/python-modules/python-lsp-ruff/default.nix b/pkgs/development/python-modules/python-lsp-ruff/default.nix new file mode 100644 index 000000000000..328af948a727 --- /dev/null +++ b/pkgs/development/python-modules/python-lsp-ruff/default.nix @@ -0,0 +1,45 @@ +{ lib +, pythonOlder +, buildPythonPackage +, fetchPypi +, ruff +, lsprotocol +, python-lsp-server +, tomli +}: + +buildPythonPackage rec { + pname = "python-lsp-ruff"; + version = "1.4.0"; + format = "pyproject"; + disabled = pythonOlder "3.7"; + + src = fetchPypi { + inherit version; + pname = "python-lsp-ruff"; + sha256 = "sha256-TqTeQc/lT5DcPcJbZXbEiUGbYjFP8idpzdSZlXD59Y4="; + }; + + postPatch = '' + # ruff binary is used directly, the ruff python package is not needed + sed -i '/"ruff>=/d' pyproject.toml + sed -i 's|sys.executable, "-m", "ruff"|"${ruff}/bin/ruff"|' pylsp_ruff/plugin.py + ''; + + propagatedBuildInputs = [ + lsprotocol + python-lsp-server + ] ++ lib.optionals (pythonOlder "3.11") [ + tomli + ]; + + doCheck = true; + + meta = with lib; { + 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 = licenses.mit; + maintainers = with maintainers; [ linsui ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d0b350e983bf..b42bf3718507 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9607,6 +9607,8 @@ self: super: with self; { python-lsp-jsonrpc = callPackage ../development/python-modules/python-lsp-jsonrpc { }; + python-lsp-ruff = callPackage ../development/python-modules/python-lsp-ruff { }; + python-lsp-server = callPackage ../development/python-modules/python-lsp-server { }; python-ly = callPackage ../development/python-modules/python-ly { };