Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
38
Issue boards
Milestones
Wiki
Code
Merge requests
30
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
!68
Add NMPI client
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add NMPI client
cnrs-neuroinformatics/ebrains-spack-builds:add-nmpi-client
into
master
Overview
4
Commits
3
Pipelines
0
Changes
2
Merged
Matthieu Sénoville
requested to merge
cnrs-neuroinformatics/ebrains-spack-builds:add-nmpi-client
into
master
3 years ago
Overview
4
Commits
3
Pipelines
0
Changes
2
Expand
Spack package for the HBP Neuromorphic Client.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
ef77f7eb
3 commits,
3 years ago
2 files
+
26
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
packages/py-hbp-neuromorphic-platform/package.py
0 → 100644
+
25
−
0
Options
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from
spack
import
*
class
PyHbpNeuromorphicPlatform
(
PythonPackage
):
"""
Python client for the Human Brain Project Neuromorphic Computing Platform.
"""
homepage
=
"
https://electronicvisions.github.io/hbp-sp9-guidebook/
"
pypi
=
"
hbp_neuromorphic_platform/hbp_neuromorphic_platform-0.9.2.tar.gz
"
git
=
"
https://github.com/HumanBrainProject/hbp-neuromorphic-client.git
"
maintainers
=
[
'
apdavison
'
]
version
(
'
0.9.2
'
,
sha256
=
'
b63b6b4b29a7bf720e456498e56cdbcfc72e704c1e08c409bec06cc1026f5bc0
'
)
depends_on
(
'
python@3.5:
'
)
depends_on
(
'
py-requests@2.20.0:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-click@8.0.3:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-pyyaml@6.0:
'
,
type
=
(
'
build
'
,
'
run
'
))