nixpkgs/pkgs/development/python-modules/recursive-pth-loader/default.nix

26 lines
529 B
Nix
Raw Normal View History

2012-07-21 17:16:59 -07:00
{ stdenv, python }:
2019-08-13 14:52:01 -07:00
stdenv.mkDerivation {
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 ];
patchPhase = "cat ${./sitecustomize.py} > sitecustomize.py";
buildPhase = "${python}/bin/${python.executable} -m compileall .";
2012-07-21 17:16:59 -07:00
installPhase =
''
dst=$out/lib/${python.libPrefix}/site-packages
mkdir -p $dst
cp sitecustomize.* $dst/
2012-07-21 17:16:59 -07:00
'';
meta = {
description = "Enable recursive processing of pth files anywhere in sys.path";
};
}