blob: 8fb212a4c44e75dc86db43cae0601326aec45a34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local pip3 = require "mason-core.managers.pip3"
return Pkg.new {
name = "python-lsp-server",
desc = [[Fork of the python-language-server project, maintained by the Spyder IDE team and the community]],
homepage = "https://github.com/python-lsp/python-lsp-server",
languages = { Pkg.Lang.Python },
categories = { Pkg.Cat.LSP },
install = pip3.packages { "python-lsp-server[all]", bin = { "pylsp" } },
}
|