Unverified Commit 35ed1f1d authored by superherointj's avatar superherointj Committed by GitHub
Browse files

Merge pull request #328632 from amadejkastelic/ms-python

vscode-extensions: add ms-python.flake8 and ms-python.pylint, update ms-python.black-formatter
parents 63911cd4 2a8375b9
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1085,6 +1085,12 @@
    name = "alyaeanyx";
    keys = [ { fingerprint = "1F73 8879 5E5A 3DFC E2B3 FA32 87D1 AADC D25B 8DEE"; } ];
  };
  amadejkastelic = {
    email = "amadejkastelic7@gmail.com";
    github = "amadejkastelic";
    githubId = 26391003;
    name = "Amadej Kastelic";
  };
  aman9das = {
    email = "amandas62640@gmail.com";
    github = "Aman9das";
+43 −5
Original line number Diff line number Diff line
@@ -3178,15 +3178,36 @@ let
        mktplcRef = {
          name = "black-formatter";
          publisher = "ms-python";
          version = "2023.4.1";
          hash = "sha256-IJaLke0WF1rlKTiuwJHAXDQB1SS39AoQhc4iyqqlTyY=";
          version = "2024.2.0";
          hash = "sha256-qIO+YqTXjwgznzUlnPSts1R2BM6iN8B9vESkelGPgZM=";
        };
        meta = with lib; {
        meta = {
          changelog = "https://marketplace.visualstudio.com/items/ms-python.black-formatter/changelog";
          description = "Formatter extension for Visual Studio Code using black";
          downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter";
          homepage = "https://github.com/microsoft/vscode-black-formatter";
          license = licenses.mit;
          maintainers = with maintainers; [ sikmir ];
          license = lib.licenses.mit;
          maintainers = with lib.maintainers; [
            amadejkastelic
            sikmir
          ];
        };
      };

      ms-python.flake8 = buildVscodeMarketplaceExtension {
        mktplcRef = {
          name = "flake8";
          publisher = "ms-python";
          version = "2023.10.0";
          hash = "sha256-4Vjw8yJPrxLg0hcoTw8AEBEcmQ9sEUNqFaHLxICks0E=";
        };
        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 ];
        };
      };

@@ -3206,6 +3227,23 @@ let
        };
      };

      ms-python.pylint = buildVscodeMarketplaceExtension {
        mktplcRef = {
          name = "pylint";
          publisher = "ms-python";
          version = "2023.10.1";
          hash = "sha256-1tI5u33c5CHFQxkJZ/OxW3ZA5qPr4RoCIf6dqIMPykQ=";
        };
        meta = {
          changelog = "https://marketplace.visualstudio.com/items/ms-python.pylint/changelog";
          description = "Python linting support for VS Code using Pylint";
          downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.pylint";
          homepage = "https://github.com/microsoft/vscode-pylint";
          license = lib.licenses.mit;
          maintainers = [ lib.maintainers.amadejkastelic ];
        };
      };

      ms-python.python = callPackage ./ms-python.python { };

      ms-python.debugpy = buildVscodeMarketplaceExtension {