at master 21 lines 572 B view raw
1{ 2 lib, 3 vscode-utils, 4}: 5 6vscode-utils.buildVscodeMarketplaceExtension { 7 mktplcRef = { 8 name = "debugpy"; 9 publisher = "ms-python"; 10 version = "2025.10.0"; 11 hash = "sha256-NDCNiKLCU7/2VH43eTyOMBTZ3oxzA7JwCBit9+JHfmY="; 12 }; 13 14 meta = { 15 description = "Python debugger (debugpy) extension for VS Code"; 16 downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy"; 17 homepage = "https://github.com/Microsoft/vscode-python-debugger"; 18 license = lib.licenses.mit; 19 maintainers = [ lib.maintainers.carlthome ]; 20 }; 21}