···3030 # Plus essentials the scripts and Python runtime need.
3131 # -------------------------------------------------------------------------
3232 runtimeDeps = with pkgs; [
3333+ # Python interpreter — the venv's bin/python3 is a symlink to the
3434+ # Nix store Python; without this package in the image that symlink
3535+ # would dangle and every `python` / `python3` call would fail.
3636+ python313
3737+3338 # Core utilities — scripts use #!/bin/bash, cat, ls, touch, etc.
3439 bash
3540 coreutils