pypy: use the official sitePackages install path

This commit is contained in:
Domen Kožar 2015-11-17 11:36:32 +01:00
parent d748ac851c
commit fc2874d02e
2 changed files with 3 additions and 3 deletions

View file

@ -119,7 +119,7 @@ let
isPypy = true;
buildEnv = callPackage ../python/wrapper.nix { python = self; };
interpreter = "${self}/bin/${executable}";
sitePackages = "lib/${libPrefix}/site-packages";
sitePackages = "site-packages";
};
enableParallelBuilding = true; # almost no parallelization without STM

View file

@ -1,12 +1,12 @@
addPythonPath() {
addToSearchPathWithCustomDelimiter : PYTHONPATH $1/lib/pypy2.6/site-packages
addToSearchPathWithCustomDelimiter : PYTHONPATH $1/site-packages
}
toPythonPath() {
local paths="$1"
local result=
for i in $paths; do
p="$i/lib/pypy2.6/site-packages"
p="$i/site-packages"
result="${result}${result:+:}$p"
done
echo $result