Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
40
Issue boards
Milestones
Wiki
Code
Merge requests
29
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
!64
Add hbp archive
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add hbp archive
cnrs-neuroinformatics/ebrains-spack-builds:ADD_hbpArchive
into
master
Overview
2
Commits
3
Pipelines
0
Changes
2
Merged
Shailesh Appukuttan
requested to merge
cnrs-neuroinformatics/ebrains-spack-builds:ADD_hbpArchive
into
master
3 years ago
Overview
2
Commits
3
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
e9aa13f9
3 years ago
master (base)
and
latest version
latest version
ac9d59f3
3 commits,
3 years ago
version 1
e9aa13f9
2 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-archive/package.py
0 → 100644
+
24
−
0
Options
# Copyright 2013-2021 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
PyHbpArchive
(
PythonPackage
):
"""
A high-level API for interacting with the Human Brain Project
archival storage at CSCS
"""
homepage
=
"
https://hbp-archive.readthedocs.io/
"
pypi
=
"
hbp-archive/hbp_archive-1.1.1.tar.gz
"
git
=
"
https://github.com/HumanBrainProject/hbp_archive.git
"
version
(
'
1.1.1
'
,
sha256
=
'
08059d3bcca4dcbc36951c82e75513bc50d8d59f1720a28bebf57a622d869f41
'
)
depends_on
(
'
python@3.6.9:
'
)
depends_on
(
'
py-lxml@4.6.4:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-keystoneauth1@4.3.1:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-python-keystoneclient@4.2.0:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-python-swiftclient@3.12.0:
'
,
type
=
(
'
build
'
,
'
run
'
))