···125 nativeBuildInputs = [
126 pkgs.brotli
127 (let
128+ # python3Minimal can't be overridden with packages on Darwin, due to a missing framework.
129+ # Instead of modifying stdenv, we take the easy way out, since most people on Darwin will
130+ # just be hacking on the Nixpkgs manual (which also uses make-options-doc).
131+ python = if pkgs.stdenv.isDarwin then pkgs.python3 else pkgs.python3Minimal;
132+ self = (python.override {
133 inherit self;
134 includeSiteCustomize = true;
135 });