Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Klaus Noelp
ebrains-spack-builds
Commits
12de1728
Commit
12de1728
authored
1 year ago
by
Moritz-Alexander-Kern
Browse files
Options
Downloads
Patches
Plain Diff
add holoviews spack package
parent
a4da83bd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/py-holoviews/package.py
+38
-0
38 additions, 0 deletions
packages/py-holoviews/package.py
spack.yaml
+1
-0
1 addition, 0 deletions
spack.yaml
with
39 additions
and
0 deletions
packages/py-holoviews/package.py
0 → 100644
+
38
−
0
View file @
12de1728
# 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.package
import
*
class
PyHoloviews
(
PythonPackage
):
"""
HoloViews is an open-source Python library designed to make data analysis and visualization seamless and simple.
"""
homepage
=
"
https://holoviews.org/
"
pypi
=
"
holoviews/holoviews-1.18.0.tar.gz
"
maintainers
=
[
''
]
version
(
'
1.18.0
'
,
sha256
=
'
bab72961ab7a18794db269351d905523f2aadcad593b321512927ce93dc9df91
'
)
depends_on
(
'
python@3.7:3.10
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-setuptools
'
,
type
=
'
build
'
)
depends_on
(
'
py-pyct
'
,
type
=
'
build
'
)
depends_on
(
'
py-matplotlib
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-bokeh
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-jupyterlab-widgets
'
,
type
=
"
run
"
)
depends_on
(
'
py-ipywidgets
'
,
type
=
"
run
"
)
depends_on
(
"
py-pytest
"
,
type
=
(
"
test
"
))
@run_after
(
'
install
'
)
@on_package_attributes
(
run_tests
=
True
)
def
install_test
(
self
):
# run tests
# TODO: replace if clause with @run_after('install', when='@1.18.0:') after update to Spack v0.19
if
self
.
spec
.
version
>=
Version
(
'
1.18.0
'
):
pytest
=
which
(
'
pytest
'
)
pytest
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
spack.yaml
+
1
−
0
View file @
12de1728
...
...
@@ -29,6 +29,7 @@ spack:
-
py-hbp-neuromorphic-platform@0.11.0
-
py-hbp-validation-client@0.8.2
-
py-hippounit@1.3.6
-
py-holoviews@1.18.0
-
py-lfpy@2.3
-
py-lfpykit@0.5.1
-
py-libsonata@0.1.23
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment