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
!561
Site specific files (JSC) for EBRAINS 24.04
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Site specific files (JSC) for EBRAINS 24.04
deepu/ebrains-spack-builds:ebrains-24-04-siteconfig-jsc
into
ebrains-24-04
Overview
0
Commits
2
Pipelines
1
Changes
9
Open
Rajalekshmi Deepu
requested to merge
deepu/ebrains-spack-builds:ebrains-24-04-siteconfig-jsc
into
ebrains-24-04
9 months ago
Overview
0
Commits
2
Pipelines
1
Changes
9
Expand
Modified the yaml files (config, compilers and packages) for JSC
0
0
Merge request reports
Compare
ebrains-24-04
ebrains-24-04 (HEAD)
and
latest version
latest version
a91919ed
2 commits,
9 months ago
9 files
+
299
−
242
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
packages/py-pyvista/package.py
0 → 100644
+
44
−
0
Options
# Copyright 2013-2024 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
PyPyvista
(
PythonPackage
):
"""
Easier Pythonic interface to VTK.
"""
homepage
=
"
https://github.com/pyvista/pyvista
"
pypi
=
"
pyvista/pyvista-0.32.1.tar.gz
"
# Requires optional trame dependency
skip_modules
=
[
"
pyvista.ext
"
,
"
pyvista.jupyter
"
,
"
pyvista.trame
"
]
maintainers
(
"
banesullivan
"
)
license
(
"
MIT
"
)
# begin EBRAINS (added): add version
version
(
"
0.43.0
"
,
sha256
=
"
0118060d56de7f9b583405723ddd8f77f20d7d8af601ad7c0b0521c6302069cf
"
)
# end EBRAINS
version
(
"
0.42.3
"
,
sha256
=
"
00159cf0dea05c1ecfd1695c8c6ccfcfff71b0744c9997fc0276e661dc052351
"
)
version
(
"
0.37.0
"
,
sha256
=
"
d36a2c6d5f53f473ab6a9241669693acee7a5179394dc97595da14cc1de23141
"
)
version
(
"
0.32.1
"
,
sha256
=
"
585ac79524e351924730aff9b7207d6c5ac4175dbb5d33f7a9a2de22ae53dbf9
"
)
depends_on
(
"
py-setuptools
"
,
type
=
"
build
"
)
depends_on
(
"
py-matplotlib@3.0.1:
"
,
when
=
"
@0.39:
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-numpy
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
pil
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-pooch
"
,
when
=
"
@0.37:
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-scooby@0.5.1:
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
vtk+python
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-typing-extensions
"
,
when
=
"
^python@:3.7
"
,
type
=
(
"
build
"
,
"
run
"
))
# Historical dependencies
depends_on
(
"
py-appdirs
"
,
when
=
"
@:0.36
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-imageio
"
,
when
=
"
@:0.38
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-meshio@4.0.3:4
"
,
when
=
"
@:0.32
"
,
type
=
(
"
build
"
,
"
run
"
))
# '>=3.7.*' in python_requires: setuptools parser changed in v60 and errors.
depends_on
(
"
py-setuptools@:59
"
,
when
=
"
@:0.37
"
,
type
=
"
build
"
)