python3.pkgs.bootstrap.installer: init at 0.7.0
Co-authored-by: K900 <me@0upti.me>
This commit is contained in:
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
|
||||
'';
|
||||
}
|
|
@ -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 { });
|
||||
|
|
Loading…
Reference in a new issue