22 lines
653 B
Nix
22 lines
653 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
publisher = "ms-python";
|
|
name = "pylint";
|
|
version = "2025.2.0";
|
|
hash = "sha256-3RqY/uugtJvT2lWxsA8NWFWel/CxMZzo7PnS9SaRdGg=";
|
|
};
|
|
meta = {
|
|
changelog = "https://marketplace.visualstudio.com/items/ms-python.pylint/changelog";
|
|
description = "Python linting support for VS Code using Pylint";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.pylint";
|
|
homepage = "https://github.com/microsoft/vscode-pylint";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.amadejkastelic ];
|
|
};
|
|
}
|