mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
a649d4f038
Noticed option globbing when tried to enable parallelism by default locally for most packages by default. python3Packages.yt-dlp failed as: python3.9-yt-dlp> /nix/store/5mywvxdjkk1q6srwwwgdkzc37ibla801-python3.9-setuptools-61.2.0/lib/python3.9/site-packages/setuptools/dist.py:516: UserWarning: Normalizing '2022.04.08' to '2022.4.8' python3.9-yt-dlp> warnings.warn(tmpl.format(**locals())) python3.9-yt-dlp> invalid command name 'build_lazy_extractors--parallel' The change adds leading whitespace everywhere where options might already be present.
59 lines
1.8 KiB
Bash
59 lines
1.8 KiB
Bash
# Setup hook for setuptools.
|
|
echo "Sourcing setuptools-build-hook"
|
|
|
|
setuptoolsBuildPhase() {
|
|
echo "Executing setuptoolsBuildPhase"
|
|
local args
|
|
runHook preBuild
|
|
|
|
cp -f @setuppy@ nix_run_setup
|
|
args=""
|
|
if [ -n "$setupPyGlobalFlags" ]; then
|
|
args+="$setupPyGlobalFlags"
|
|
fi
|
|
if [ -n "$enableParallelBuilding" ]; then
|
|
setupPyBuildFlags+=" --parallel $NIX_BUILD_CORES"
|
|
fi
|
|
if [ -n "$setupPyBuildFlags" ]; then
|
|
args+=" build_ext $setupPyBuildFlags"
|
|
fi
|
|
eval "@pythonInterpreter@ nix_run_setup $args bdist_wheel"
|
|
|
|
runHook postBuild
|
|
echo "Finished executing setuptoolsBuildPhase"
|
|
}
|
|
|
|
setuptoolsShellHook() {
|
|
echo "Executing setuptoolsShellHook"
|
|
runHook preShellHook
|
|
|
|
if test -e setup.py; then
|
|
tmp_path=$(mktemp -d)
|
|
export PATH="$tmp_path/bin:$PATH"
|
|
export PYTHONPATH="$tmp_path/@pythonSitePackages@:$PYTHONPATH"
|
|
mkdir -p "$tmp_path/@pythonSitePackages@"
|
|
eval "@pythonInterpreter@ -m pip install -e . --prefix $tmp_path \
|
|
--no-build-isolation >&2"
|
|
|
|
# Process pth file installed in tmp path. This allows one to
|
|
# actually import the editable installation. Note site.addsitedir
|
|
# appends, not prepends, new paths. Hence, it is not possible to override
|
|
# an existing installation of the package.
|
|
# https://github.com/pypa/setuptools/issues/2612
|
|
export NIX_PYTHONPATH="$tmp_path/@pythonSitePackages@:${NIX_PYTHONPATH-}"
|
|
fi
|
|
|
|
runHook postShellHook
|
|
echo "Finished executing setuptoolsShellHook"
|
|
}
|
|
|
|
if [ -z "${dontUseSetuptoolsBuild-}" ] && [ -z "${buildPhase-}" ]; then
|
|
echo "Using setuptoolsBuildPhase"
|
|
buildPhase=setuptoolsBuildPhase
|
|
fi
|
|
|
|
if [ -z "${dontUseSetuptoolsShellHook-}" ] && [ -z "${shellHook-}" ]; then
|
|
echo "Using setuptoolsShellHook"
|
|
shellHook=setuptoolsShellHook
|
|
fi
|