diff options
| author | William Boman <william@redwill.se> | 2023-03-31 19:59:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-31 19:59:47 +0200 |
| commit | baee73f710fda10d3f946dc98f14b6923f38e3f1 (patch) | |
| tree | c9283f996efcbca762ffdcdbe631399025f6c0de /lua/mason-registry/index/debugpy/init.lua | |
| parent | chore: autogenerate (#1159) (diff) | |
| download | mason-baee73f710fda10d3f946dc98f14b6923f38e3f1.tar mason-baee73f710fda10d3f946dc98f14b6923f38e3f1.tar.gz mason-baee73f710fda10d3f946dc98f14b6923f38e3f1.tar.bz2 mason-baee73f710fda10d3f946dc98f14b6923f38e3f1.tar.lz mason-baee73f710fda10d3f946dc98f14b6923f38e3f1.tar.xz mason-baee73f710fda10d3f946dc98f14b6923f38e3f1.tar.zst mason-baee73f710fda10d3f946dc98f14b6923f38e3f1.zip | |
chore: migrate packages (#1161)
Diffstat (limited to 'lua/mason-registry/index/debugpy/init.lua')
| -rw-r--r-- | lua/mason-registry/index/debugpy/init.lua | 18 |
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, -} |
