python3.pkgs.bootstrap.installer: init at 0.7.0

Co-authored-by: K900 <me@0upti.me>
This commit is contained in:
Theodore Ni 2023-07-26 00:57:35 -07:00 committed by Frederik Rietdijk
parent 5d2290bb58
commit 8fe3d15c17
2 changed files with 32 additions and 0 deletions

View File

@ -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
'';
}

View File

@ -10,6 +10,9 @@ self: super: with self; {
bootstrap = lib.recurseIntoAttrs {
flit-core = toPythonModule (callPackage ../development/python-modules/bootstrap/flit-core { });
installer = toPythonModule (callPackage ../development/python-modules/bootstrap/installer {
inherit (bootstrap) flit-core;
});
};
bootstrapped-pip = toPythonModule (callPackage ../development/python-modules/bootstrapped-pip { });