23 lines
637 B
Nix
23 lines
637 B
Nix
|
|
{
|
||
|
|
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 ];
|
||
|
|
};
|
||
|
|
}
|