26 lines
740 B
Nix
26 lines
740 B
Nix
{
|
|
lib,
|
|
pyright,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "vscode-pylance";
|
|
publisher = "MS-python";
|
|
version = "2026.2.1";
|
|
hash = "sha256-u1n4OqjBCAaRZe8Mu2vzYfZE6tpJQSQ3gSInJsNSSnQ=";
|
|
};
|
|
|
|
buildInputs = [ pyright ];
|
|
|
|
meta = {
|
|
changelog = "https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/changelog";
|
|
description = "Performant, feature-rich language server for Python in VS Code";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance";
|
|
homepage = "https://github.com/microsoft/pylance-release";
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.ericthemagician ];
|
|
};
|
|
}
|