mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
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
@ -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 New Issue
Block a user