Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 vscode-utils, 4}: 5 6vscode-utils.buildVscodeMarketplaceExtension { 7 mktplcRef = { 8 publisher = "ms-python"; 9 name = "black-formatter"; 10 version = "2025.2.0"; 11 hash = "sha256-EPtxcp42KunVwVdT/xhVzuwvQ+5VswGNnOZpYXZOP04="; 12 }; 13 14 meta = { 15 changelog = "https://marketplace.visualstudio.com/items/ms-python.black-formatter/changelog"; 16 description = "Formatter extension for Visual Studio Code using black"; 17 downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter"; 18 homepage = "https://github.com/microsoft/vscode-black-formatter"; 19 license = lib.licenses.mit; 20 maintainers = with lib.maintainers; [ 21 amadejkastelic 22 sikmir 23 ]; 24 }; 25}