Files

23 lines
654 B
Nix

{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "ms-python";
name = "flake8";
version = "2026.6.0";
hash = "sha256-n++DEjZsNY3YkvldyWuk3dCYgFbIxqMOun42lWEHGog=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/ms-python.flake8/changelog";
description = "Python linting support for VS Code using Flake8";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.flake8";
homepage = "https://github.com/microsoft/vscode-flake8";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.amadejkastelic ];
};
}