1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

pythonPackages.buildPythonPackage: enable verbose output with pyproject

This makes the build log more useful
This commit is contained in:
Eduardo Sánchez Muñoz 2021-05-17 12:22:48 +02:00 committed by Jonathan Ringer
parent 9c9882ecd9
commit 4aee58ec96

View file

@ -7,7 +7,7 @@ pipBuildPhase() {
mkdir -p dist
echo "Creating a wheel..."
@pythonInterpreter@ -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist .
@pythonInterpreter@ -m pip wheel --verbose --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist .
echo "Finished creating a wheel..."
runHook postBuild