python.pkgs.wheelUnpackHook: propagate wheel

This was accidentally removed when buildPython* was rewritten as hooks.
This commit is contained in:
Frederik Rietdijk 2019-09-10 22:13:08 +02:00 committed by Frederik Rietdijk
parent 3ae2b4b5bb
commit c99529a4b6

View File

@ -88,8 +88,9 @@ in rec {
}; };
} ./setuptools-check-hook.sh) {}; } ./setuptools-check-hook.sh) {};
wheelUnpackHook = callPackage ({ }: wheelUnpackHook = callPackage ({ wheel }:
makeSetupHook { makeSetupHook {
name = "wheel-unpack-hook.sh"; name = "wheel-unpack-hook.sh";
deps = [ wheel ];
} ./wheel-unpack-hook.sh) {}; } ./wheel-unpack-hook.sh) {};
} }