Files

22 lines
571 B
Nix

{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "debugpy";
publisher = "ms-python";
version = "2026.6.0";
hash = "sha256-zgfBcgIKc78f9qpcl9ULoQTUQ1ETAxfwpH/SSOhyaZc=";
};
meta = {
description = "Python debugger (debugpy) extension for VS Code";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy";
homepage = "https://github.com/Microsoft/vscode-python-debugger";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.carlthome ];
};
}