Skip to content
Snippets Groups Projects
Commit c5211577 authored by Athanasios Karmas's avatar Athanasios Karmas
Browse files

Merge branch 'fix_nest' into 'release_v0.1_202109'

Fix(pynn-brainscales): Enforce correct log4cxx version

See merge request technical-coordination/devops/platform/ebrains-spack-builds!27
parents 1e2fcca8 121d8497
No related branches found
No related tags found
No related merge requests found
...@@ -176,3 +176,8 @@ class Nest(CMakePackage): ...@@ -176,3 +176,8 @@ class Nest(CMakePackage):
@on_package_attributes(run_tests=True) @on_package_attributes(run_tests=True)
def installcheck(self): def installcheck(self):
make("installcheck") make("installcheck")
# quick-fix to add lib64/python3.8/site-packages to the PYTHONPATH;
# this should happen automatically for packages extending Python...
def setup_run_environment(self, env):
env.prepend_path('PYTHONPATH', self.prefix.lib64.join('python3.8/site-packages'))
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment