vscode-extensions.my-python.debugpy: move extension in its own directory
This commit is contained in:
@@ -3513,21 +3513,7 @@ let
|
||||
|
||||
ms-python.python = callPackage ./ms-python.python { };
|
||||
|
||||
ms-python.debugpy = buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "debugpy";
|
||||
publisher = "ms-python";
|
||||
version = "2024.6.0";
|
||||
hash = "sha256-VlPe65ViBur5P6L7iRKdGnmbNlSCwYrdZAezStx8Bz8=";
|
||||
};
|
||||
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 ];
|
||||
};
|
||||
};
|
||||
ms-python.debugpy = callPackage ./ms-python.debugpy { };
|
||||
|
||||
ms-python.vscode-pylance = callPackage ./ms-python.vscode-pylance { };
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
lib,
|
||||
vscode-utils,
|
||||
}:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "debugpy";
|
||||
publisher = "ms-python";
|
||||
version = "2024.6.0";
|
||||
hash = "sha256-VlPe65ViBur5P6L7iRKdGnmbNlSCwYrdZAezStx8Bz8=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user