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

26 lines
529 B
Nix
Raw Normal View History

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