Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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 = "2025.8.2";
|
|
hash = "sha256-Z2R7gUZw1S2iL3KX/3fB326lFzE39v9LGq17Ec2aHCA=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|