Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Wiki
Code
Merge requests
32
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!30
Quick-fix to add nest's lib64 site-packages to PYTHONPATH
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Quick-fix to add nest's lib64 site-packages to PYTHONPATH
cherry-pick-121d8497
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Athanasios Karmas
requested to merge
cherry-pick-121d8497
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
(cherry picked from commit
121d8497
)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
097578e4
1 commit,
3 years ago
1 file
+
5
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
packages/nest/package.py
+
5
−
0
Options
@@ -176,3 +176,8 @@ class Nest(CMakePackage):
@on_package_attributes
(
run_tests
=
True
)
def
installcheck
(
self
):
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
'
))