vscode-extensions.ms-pyright.pyright: move extension in its own directory

This commit is contained in:
Pol Dellaiera
2025-02-17 10:37:42 +01:00
parent 8277b7b159
commit 7f8f65c1fe
2 changed files with 23 additions and 16 deletions
@@ -3422,22 +3422,7 @@ let
};
};
ms-pyright.pyright = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "pyright";
publisher = "ms-pyright";
version = "1.1.300";
hash = "sha256-GzRJeV4qfgM2kBv6U3MH7lMWl3CL6LWPI/9GaVWZL+o=";
};
meta = {
description = "VS Code static type checking for Python";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-pyright.pyright";
homepage = "https://github.com/Microsoft/pyright#readme";
changelog = "https://marketplace.visualstudio.com/items/ms-pyright.pyright/changelog";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ratsclub ];
};
};
ms-pyright.pyright = callPackage ./ms-pyright.pyright { };
ms-python.black-formatter = buildVscodeMarketplaceExtension {
mktplcRef = {
@@ -0,0 +1,22 @@
{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "ms-pyright";
name = "pyright";
version = "1.1.394";
hash = "sha256-LQYC4dZ0lJ+NkQjRGW0HQ16TK2NI0ZK2IYytkxoBhR0=";
};
meta = {
description = "VS Code static type checking for Python";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-pyright.pyright";
homepage = "https://github.com/Microsoft/pyright#readme";
changelog = "https://marketplace.visualstudio.com/items/ms-pyright.pyright/changelog";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ratsclub ];
};
}