mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
cadc9a03a7
This should work for both python2 and python3.
25 lines
520 B
Nix
25 lines
520 B
Nix
{ stdenv, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "python-recursive-pth-loader-1.0";
|
|
|
|
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";
|
|
};
|
|
}
|