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