From c99529a4b6cc4c09c5e4e4b51185d0521928a117 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 10 Sep 2019 22:13:08 +0200 Subject: [PATCH] python.pkgs.wheelUnpackHook: propagate wheel This was accidentally removed when buildPython* was rewritten as hooks. --- pkgs/development/interpreters/python/hooks/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/hooks/default.nix b/pkgs/development/interpreters/python/hooks/default.nix index 9a7ec98ba17..3a4b4a0ccad 100644 --- a/pkgs/development/interpreters/python/hooks/default.nix +++ b/pkgs/development/interpreters/python/hooks/default.nix @@ -88,8 +88,9 @@ in rec { }; } ./setuptools-check-hook.sh) {}; - wheelUnpackHook = callPackage ({ }: + wheelUnpackHook = callPackage ({ wheel }: makeSetupHook { name = "wheel-unpack-hook.sh"; + deps = [ wheel ]; } ./wheel-unpack-hook.sh) {}; }