python3.pkgs.bootstrap.installer: init at 0.7.0

Co-authored-by: K900 <me@0upti.me>
This commit is contained in:
Theodore Ni
2023-08-20 10:59:46 +02:00
committed by Frederik Rietdijk
co-authored by K900
parent 5d2290bb58
commit 8fe3d15c17
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,29 @@
{ lib
, stdenv
, python
, flit-core
, installer
}:
stdenv.mkDerivation {
pname = "${python.libPrefix}-bootstrap-${installer.pname}";
inherit (installer) version src meta;
buildPhase = ''
runHook preBuild
PYTHONPATH="${flit-core}/${python.sitePackages}" \
${python.interpreter} -m flit_core.wheel
runHook postBuild
'';
installPhase = ''
runHook preInstall
PYTHONPATH=src ${python.interpreter} -m installer \
--destdir "$out" --prefix "" dist/installer-*.whl
runHook postInstall
'';
}