about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/bootstrap/flit-core/default.nix
blob: ab9e52538d34135b3d67cb1c04aeae1b60e46c36 (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
}:

stdenv.mkDerivation {
  pname = "${python.libPrefix}-bootstrap-${flit-core.pname}";
  inherit (flit-core) version src patches meta;

  sourceRoot = "source/flit_core";

  buildPhase = ''
    runHook preBuild

    ${python.interpreter} -m flit_core.wheel

    runHook postBuild
  '';

  installPhase = ''
    runHook preInstall

    ${python.interpreter} bootstrap_install.py dist/flit_core-*.whl \
      --install-root "$out" --installdir "/${python.sitePackages}"

    runHook postInstall
  '';
}