{ pkgs ? import { } }: pkgs.mkShell { buildInputs = with pkgs; [ python3 ruff ]; packages = with pkgs; [ (vscode-with-extensions.override { vscode = vscodium; vscodeExtensions = with vscode-extensions; [ ms-python.python stkb.rewrap streetsidesoftware.code-spell-checker charliermarsh.ruff ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [ ]; }) ]; }