mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
25 lines
726 B
Nix
25 lines
726 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
publisher = "ms-python";
|
|
name = "black-formatter";
|
|
version = "2026.6.0";
|
|
hash = "sha256-jTq5cpP3QwyAOF1VihAJA5ZYCpb3qbmeNIUPFr9Xph8=";
|
|
};
|
|
|
|
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 = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
amadejkastelic
|
|
sikmir
|
|
];
|
|
};
|
|
}
|