aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/debugpy/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/debugpy/init.lua')
-rw-r--r--lua/mason-registry/index/debugpy/init.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/lua/mason-registry/index/debugpy/init.lua b/lua/mason-registry/index/debugpy/init.lua
deleted file mode 100644
index f5837e4e..00000000
--- a/lua/mason-registry/index/debugpy/init.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-local Pkg = require "mason-core.package"
-local path = require "mason-core.path"
-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 },
- ---@async
- ---@param ctx InstallContext
- install = function(ctx)
- pip3.install({ "debugpy" }).with_receipt()
- ctx:link_bin("debugpy", ctx:write_pyvenv_exec_wrapper("debugpy", "debugpy"))
- ctx:link_bin("debugpy-adapter", ctx:write_pyvenv_exec_wrapper("debugpy-adapter", "debugpy.adapter"))
- end,
-}