2012-07-22 02:16:59 +02:00
|
|
|
{ stdenv, python }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-12-14 19:47:22 +01:00
|
|
|
name = "python-recursive-pth-loader-1.0";
|
2012-07-22 02:16:59 +02:00
|
|
|
|
|
|
|
unpackPhase = "true";
|
|
|
|
|
|
|
|
buildInputs = [ python ];
|
|
|
|
|
2013-09-07 00:48:42 +02:00
|
|
|
patchPhase = "cat ${./sitecustomize.py} > sitecustomize.py";
|
|
|
|
|
2013-09-08 22:07:20 +02:00
|
|
|
buildPhase = "${python}/bin/${python.executable} -m compileall .";
|
2013-09-07 00:48:42 +02:00
|
|
|
|
2012-07-22 02:16:59 +02:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
dst=$out/lib/${python.libPrefix}/site-packages
|
|
|
|
mkdir -p $dst
|
2013-09-07 00:48:42 +02:00
|
|
|
cp sitecustomize.* $dst/
|
2012-07-22 02:16:59 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Enable recursive processing of pth files anywhere in sys.path";
|
|
|
|
};
|
|
|
|
}
|