aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/debugpy/init.lua
blob: 79e71825b627416fb5a08dc213f7e689944e1273 (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 = "debugpy",
    desc = [[An implementation of the Debug Adapter Protocol for Python]],
    homepage = "https://github.com/microsoft/debugpy",
    languages = { Pkg.Lang.Python },
    categories = { Pkg.Cat.DAP },
    install = pip3.packages { "debugpy" },
}