about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/bootstrap/installer/default.nix
blob: b569e7fa6dc80cee4336fdf9580b5c8fd01e5cbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
  '';
}