Unverified Commit 86e4f7ed authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

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

parents 5d4ab3a7 82ce4b5c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3903,6 +3903,8 @@ let
        };
      };

      pylyzer.pylyzer = callPackage ./pylyzer.pylyzer { };

      pythagoratechnologies.gpt-pilot-vs-code = buildVscodeMarketplaceExtension {
        mktplcRef = {
          name = "gpt-pilot-vs-code";
+18 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}