mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-17 23:19:25 +03:00
15 lines
380 B
Bash
15 lines
380 B
Bash
# Setup hook for flit
|
|
echo "Sourcing flit-build-hook"
|
|
|
|
flitBuildPhase () {
|
|
echo "Executing flitBuildPhase"
|
|
runHook preBuild
|
|
@pythonInterpreter@ -m flit build --format wheel
|
|
runHook postBuild
|
|
echo "Finished executing flitBuildPhase"
|
|
}
|
|
|
|
if [ -z "$dontUseFlitBuild" ] && [ -z "$buildPhase" ]; then
|
|
echo "Using flitBuildPhase"
|
|
buildPhase=flitBuildPhase
|
|
fi
|