Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
637 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
vscode-utils,
...
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "basedpyright";
publisher = "detachhead";
version = "1.31.6";
hash = "sha256-kYy3rpDhyE8n0aBRE8tUYz9Ayvh0kzEDmHLclF9pBcc=";
};
meta = {
changelog = "https://github.com/detachhead/basedpyright/releases";
description = "VS Code static type checking for Python (but based)";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=detachhead.basedpyright";
homepage = "https://docs.basedpyright.com/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.hasnep ];
};
}