recursive pth loader

This commit is contained in:
Florian Friesdorf
2012-07-22 02:16:59 +02:00
parent c750a66717
commit 30ffafb47d
3 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, python }:
stdenv.mkDerivation rec {
name = "resursive-pth-loader-1.0";
unpackPhase = "true";
buildInputs = [ python ];
installPhase =
''
dst=$out/lib/${python.libPrefix}/site-packages
mkdir -p $dst
cat ${./sitecustomize.py} >> $dst/sitecustomize.py
'';
meta = {
description = "Enable recursive processing of pth files anywhere in sys.path";
};
}