summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/hooks/wheel-unpack-hook.sh
blob: 6dd0c5be4cb2de89e83a23e146111ec71fa91eb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Setup hook to use in case a wheel is fetched
echo "Sourcing wheel setup hook"

wheelUnpackPhase(){
    echo "Executing wheelUnpackPhase"
    runHook preUnpack

    mkdir -p dist
    cp "$src" "dist/$(stripHash "$src")"

#     runHook postUnpack # Calls find...?
    echo "Finished executing wheelUnpackPhase"
}

if [ -z "$dontUseWheelUnpack" ] && [ -z "$unpackPhase" ]; then
    echo "Using wheelUnpackPhase"
    unpackPhase=wheelUnpackPhase
fi