depot/third_party/nixpkgs/pkgs/development/python-modules/recursive-pth-loader/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

25 lines
556 B
Nix

{ stdenv, python }:
stdenv.mkDerivation {
pname = "python-recursive-pth-loader";
version = "1.0";
dontUnpack = true;
buildInputs = [ python ];
patchPhase = "cat ${./sitecustomize.py} > sitecustomize.py";
buildPhase = "${python.pythonOnBuildForHost}/bin/${python.pythonOnBuildForHost.executable} -m compileall .";
installPhase =
''
dst=$out/${python.sitePackages}
mkdir -p $dst
cp sitecustomize.* $dst/
'';
meta = {
description = "Enable recursive processing of pth files anywhere in sys.path";
};
}