My code in working through the CS Primer material.
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = [
    # pkgs.zig
    pkgs.python311Packages.python
    pkgs.python311Packages.setuptools
  ];
}