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
31
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
!665
Add missing tvb-widgets dependencies
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add missing tvb-widgets dependencies
add-tvbwidgets-deps
into
master
Overview
6
Commits
11
Pipelines
7
Changes
15
Merged
Eleni Mathioulaki
requested to merge
add-tvbwidgets-deps
into
master
1 month ago
Overview
6
Commits
11
Pipelines
7
Changes
15
Expand
1
0
Merge request reports
Compare
master
version 5
cae364d2
3 weeks ago
version 4
03077cf4
1 month ago
version 3
c4c57690
1 month ago
version 2
ecfb1f21
1 month ago
version 1
66ca57c8
1 month ago
master (base)
and
latest version
latest version
1cc49e72
11 commits,
3 weeks ago
version 5
cae364d2
11 commits,
3 weeks ago
version 4
03077cf4
10 commits,
1 month ago
version 3
c4c57690
9 commits,
1 month ago
version 2
ecfb1f21
12 commits,
1 month ago
version 1
66ca57c8
5 commits,
1 month ago
15 files
+
383
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
packages/py-anywidget/package.py
0 → 100644
+
26
−
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
PyAnywidget
(
PythonPackage
):
"""
Custom jupyter widgets made easy
"""
homepage
=
"
https://github.com/manzt/anywidget
"
pypi
=
"
anywidget/anywidget-0.9.16.tar.gz
"
version
(
"
0.9.13
"
,
sha256
=
"
c655455bf51f82182eb23c5947d37cc41f0b1ffacaf7e2b763147a2332cb3f07
"
)
version
(
"
0.9.12
"
,
sha256
=
"
25855b2496dc6541356b6d26ca0c9f9525203bb7cf2817f84b93bfe3f53cf81e
"
)
version
(
"
0.9.11
"
,
sha256
=
"
58dded8e86ec27ce28760c9457317663113d9af608947ee6a8d0ecb528b22cdc
"
)
version
(
"
0.9.10
"
,
sha256
=
"
390a628240981c09813c7523279ddcab82ff4fd3287add5433b78b1369089068
"
)
version
(
"
0.8.1
"
,
sha256
=
"
a7627770be455f89afd7d58faff926f45ef52b53257ae3c595177d5ff9b12fd1
"
)
version
(
"
0.8.0
"
,
sha256
=
"
847a0fece58ea7a32d20dccd54a026dd3dd28f76daa6b4f0a74c253e5c7cfeec
"
)
depends_on
(
"
py-hatchling
"
,
type
=
"
build
"
)
depends_on
(
"
py-hatch-jupyter-builder
"
,
type
=
"
build
"
)
depends_on
(
"
py-ipywidgets@7.6:
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-typing-extensions@4.2:
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-psygnal@0.8.1:
"
,
type
=
(
"
build
"
,
"
run
"
))