blob: 3102b8886d7565f6b42f5a85509a8cb967a804af [file] [log] [blame]
{ pkgs }: with pkgs;
# Only override for our actual build
if (!stdenv.hostPlatform.isStatic) then python3Minimal else
python3Minimal.overrideAttrs (old: {
# Revert "fixup" which hardcodes a nix path.
postPatch = old.postPatch + ''
substituteInPlace Lib/subprocess.py \
--replace-fail "'${bashNonInteractive}/bin/sh'" "'/bin/sh'"
'';
})