1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-10 18:12:34 +09:00
nixpkgs/pkgs/development/python-modules/recursive-pth-loader/default.nix
2024-01-30 19:56:57 +01: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";
};
}