summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/hooks/flit-build-hook.sh
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-09-10 00:55:30 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2023-09-22 21:11:24 +0200
commitbdda7b0a538857f34a413076e06c3a4353efc70a (patch)
tree2b63e237cb5f09c9a74814f870944f4ac3b1ed76 /pkgs/development/interpreters/python/hooks/flit-build-hook.sh
parent175f10a559cd9dd65b096b0ea1a776ce4d746b23 (diff)
downloadnixpkgs-bdda7b0a538857f34a413076e06c3a4353efc70a.tar
nixpkgs-bdda7b0a538857f34a413076e06c3a4353efc70a.tar.gz
nixpkgs-bdda7b0a538857f34a413076e06c3a4353efc70a.tar.bz2
nixpkgs-bdda7b0a538857f34a413076e06c3a4353efc70a.tar.lz
nixpkgs-bdda7b0a538857f34a413076e06c3a4353efc70a.tar.xz
nixpkgs-bdda7b0a538857f34a413076e06c3a4353efc70a.tar.zst
nixpkgs-bdda7b0a538857f34a413076e06c3a4353efc70a.zip
python3Packages.flitBuildHook: remove
Diffstat (limited to 'pkgs/development/interpreters/python/hooks/flit-build-hook.sh')
-rw-r--r--pkgs/development/interpreters/python/hooks/flit-build-hook.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkgs/development/interpreters/python/hooks/flit-build-hook.sh b/pkgs/development/interpreters/python/hooks/flit-build-hook.sh
deleted file mode 100644
index 45893aae00f..00000000000
--- a/pkgs/development/interpreters/python/hooks/flit-build-hook.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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