blob: 9f396bb6275ab6b83fceb2abd35bfc8ccfd03858 (
plain)
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
30
31
32
33
34
|
{
stdenv,
python,
flit-core,
installer,
}:
stdenv.mkDerivation {
pname = "${python.libPrefix}-bootstrap-${installer.pname}";
inherit (installer)
version
src
patches
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
'';
}
|