blob: 3102b8886d7565f6b42f5a85509a8cb967a804af [file] [log] [blame]
Tim Windelschmidtea800252025-07-09 07:00:29 +02001{ pkgs }: with pkgs;
2# Only override for our actual build
3if (!stdenv.hostPlatform.isStatic) then python3Minimal else
4python3Minimal.overrideAttrs (old: {
5 # Revert "fixup" which hardcodes a nix path.
6 postPatch = old.postPatch + ''
7 substituteInPlace Lib/subprocess.py \
8 --replace-fail "'${bashNonInteractive}/bin/sh'" "'/bin/sh'"
9 '';
10})