summary refs log tree commit diff
path: root/pkgs/development/python-modules/recursive-pth-loader/default.nix
blob: 359b482a16829d7925d94ba4d08becd92a21c883 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, python }:

stdenv.mkDerivation rec {
  pname = "python-recursive-pth-loader";
  version = "1.0";
  name = pname + "-" + version;

  unpackPhase = "true";

  buildInputs = [ python ];

  patchPhase = "cat ${./sitecustomize.py} > sitecustomize.py";

  buildPhase = "${python}/bin/${python.executable} -m compileall .";

  installPhase =
    ''
      dst=$out/lib/${python.libPrefix}/site-packages
      mkdir -p $dst
      cp sitecustomize.* $dst/
    '';

  meta = {
      description = "Enable recursive processing of pth files anywhere in sys.path";
  };
}