0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

python3Packages.flit: fix tests and packaging (#69546)

* python3Packages.flit: fix tests

* python: fix flit setup hook
This commit is contained in:
Jon 2019-09-26 14:09:03 -07:00 committed by zimbatm
parent e6b93257b0
commit 28af6ac647
2 changed files with 8 additions and 8 deletions

View file

@ -3,9 +3,9 @@ echo "Sourcing flit-build-hook"
flitBuildPhase () {
echo "Executing flitBuildPhase"
preBuild
runHook preBuild
@pythonInterpreter@ -m flit build --format wheel
postBuild
runHook postBuild
echo "Finished executing flitBuildPhase"
}