Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, vscode-utils }: 2 3vscode-utils.buildVscodeMarketplaceExtension { 4 mktplcRef = { 5 name = "pylyzer"; 6 publisher = "pylyzer"; 7 version = "0.1.11"; 8 hash = "sha256-RIJwzScCRTL9SJZ3B9PFBkocnGdZ7D8uYjcXPsTumho="; 9 }; 10 11 meta = { 12 description = "VS Code extension for Pylyzer, a fast static code analyzer & language server for Python"; 13 downloadPage = "https://marketplace.visualstudio.com/items?itemName=pylyzer.pylyzer"; 14 homepage = "https://github.com/mtshiba/pylyzer/"; 15 license = lib.licenses.mit; 16 maintainers = with lib.maintainers; [ drupol ]; 17 }; 18}