Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / python-lsp-ruff / default.nix
blobeae9047c9f9d5ba42dd10b11e89d99099946412b
1 { lib
2 , pythonOlder
3 , buildPythonPackage
4 , fetchPypi
5 , ruff
6 , lsprotocol
7 , python-lsp-server
8 , tomli
9 }:
11 buildPythonPackage rec {
12   pname = "python-lsp-ruff";
13   version = "1.6.0";
14   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit version;
19     pname = "python-lsp-ruff";
20     sha256 = "sha256-vf3ZNZyen1W29qk4ST1sus5VTcys9F3067NlUr406bg=";
21   };
23   postPatch = ''
24     # ruff binary is used directly, the ruff python package is not needed
25     sed -i '/"ruff>=/d' pyproject.toml
26     sed -i 's|sys.executable, "-m", "ruff"|"${ruff}/bin/ruff"|' pylsp_ruff/plugin.py
27   '';
29   propagatedBuildInputs = [
30     lsprotocol
31     python-lsp-server
32   ] ++ lib.optionals (pythonOlder "3.11") [
33     tomli
34   ];
36   doCheck = true;
38   meta = with lib; {
39     homepage = "https://github.com/python-lsp/python-lsp-ruff";
40     description = "Ruff linting plugin for pylsp";
41     changelog = "https://github.com/python-lsp/python-lsp-ruff/releases/tag/v${version}";
42     license = licenses.mit;
43     maintainers = with maintainers; [ linsui ];
44   };