vscode-extensions.pylyzer.pylyzer: init at 0.1.8 (#346370)

This commit is contained in:
Pol Dellaiera 2024-10-04 13:29:16 +02:00 committed by GitHub
commit 86e4f7ed7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

View File

@ -3903,6 +3903,8 @@ let
};
};
pylyzer.pylyzer = callPackage ./pylyzer.pylyzer { };
pythagoratechnologies.gpt-pilot-vs-code = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "gpt-pilot-vs-code";

View File

@ -0,0 +1,18 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "pylyzer";
publisher = "pylyzer";
version = "0.1.8";
hash = "sha256-GoY4cobxL64bREtgl7q/iR66axSM3tBrle/b9h3ED8Q=";
};
meta = {
description = "A VS Code extension for Pylyzer, a fast static code analyzer & language server for Python";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=pylyzer.pylyzer";
homepage = "https://github.com/mtshiba/pylyzer/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
};
}