Merge pull request #18187 from adevress/master

neuron: fix issue with incorrectly prefixed python path
This commit is contained in:
Frederik Rietdijk 2016-09-01 14:22:17 +02:00 committed by GitHub
commit 41728c25a6

View file

@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
## standardise python neuron install dir if any
if [[ -d $out/lib/python ]]; then
mkdir -p ''${out}/${python.sitePackages}
mv ''${out}/lib/python ''${out}/${python.sitePackages}
mv ''${out}/lib/python/* ''${out}/${python.sitePackages}/
fi
''];