2012-07-21 17:16:59 -07:00
|
|
|
{ stdenv, python }:
|
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2017-11-09 03:26:09 -08:00
|
|
|
pname = "python-recursive-pth-loader";
|
|
|
|
version = "1.0";
|
2012-07-21 17:16:59 -07:00
|
|
|
|
2019-06-19 08:45:34 -07:00
|
|
|
dontUnpack = true;
|
2012-07-21 17:16:59 -07:00
|
|
|
|
|
|
|
buildInputs = [ python ];
|
|
|
|
|
2013-09-06 15:48:42 -07:00
|
|
|
patchPhase = "cat ${./sitecustomize.py} > sitecustomize.py";
|
|
|
|
|
2013-09-08 13:07:20 -07:00
|
|
|
buildPhase = "${python}/bin/${python.executable} -m compileall .";
|
2013-09-06 15:48:42 -07:00
|
|
|
|
2012-07-21 17:16:59 -07:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
dst=$out/lib/${python.libPrefix}/site-packages
|
|
|
|
mkdir -p $dst
|
2013-09-06 15:48:42 -07:00
|
|
|
cp sitecustomize.* $dst/
|
2012-07-21 17:16:59 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Enable recursive processing of pth files anywhere in sys.path";
|
|
|
|
};
|
|
|
|
}
|