add python35 and python35Packages

This commit is contained in:
Domen Kožar
2015-09-15 07:46:46 +02:00
parent eb29d8e44b
commit cabb050528
3 changed files with 135 additions and 0 deletions
@@ -0,0 +1,15 @@
addPythonPath() {
addToSearchPathWithCustomDelimiter : PYTHONPATH $1/lib/python3.5/site-packages
}
toPythonPath() {
local paths="$1"
local result=
for i in $paths; do
p="$i/lib/python3.5/site-packages"
result="${result}${result:+:}$p"
done
echo $result
}
envHooks+=(addPythonPath)