blob: c5a21d488fcfea07e9e795b617cff552fd0b5253 (
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
|
{ stdenv, python }:
stdenv.mkDerivation {
pname = "python-recursive-pth-loader";
version = "1.0";
dontUnpack = true;
buildInputs = [ python ];
patchPhase = "cat ${./sitecustomize.py} > sitecustomize.py";
buildPhase = "${python.pythonOnBuildForHost}/bin/${python.pythonOnBuildForHost.executable} -m compileall .";
installPhase = ''
dst=$out/${python.sitePackages}
mkdir -p $dst
cp sitecustomize.* $dst/
'';
meta = {
description = "Enable recursive processing of pth files anywhere in sys.path";
};
}
|