recursive pth loader
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user