1{
2 lib,
3 vscode-utils,
4}:
5
6vscode-utils.buildVscodeMarketplaceExtension {
7 mktplcRef = {
8 publisher = "ms-python";
9 name = "pylint";
10 version = "2025.2.0";
11 hash = "sha256-3RqY/uugtJvT2lWxsA8NWFWel/CxMZzo7PnS9SaRdGg=";
12 };
13 meta = {
14 changelog = "https://marketplace.visualstudio.com/items/ms-python.pylint/changelog";
15 description = "Python linting support for VS Code using Pylint";
16 downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.pylint";
17 homepage = "https://github.com/microsoft/vscode-pylint";
18 license = lib.licenses.mit;
19 maintainers = [ lib.maintainers.amadejkastelic ];
20 };
21}