summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-10-01 01:33:28 +0200
committerGitHub <noreply@github.com>2021-10-01 01:33:28 +0200
commitc076aeb19271d90694013ae46ea4a432a113b29a (patch)
tree3dea3cd52820743ce68591787d532a5900726522 /var
parent74d36076c262d1d2de59227680d0543dd08a58c5 (diff)
downloadspack-c076aeb19271d90694013ae46ea4a432a113b29a.tar.gz
spack-c076aeb19271d90694013ae46ea4a432a113b29a.tar.bz2
spack-c076aeb19271d90694013ae46ea4a432a113b29a.tar.xz
spack-c076aeb19271d90694013ae46ea4a432a113b29a.zip
py-jupyterlab: add new package (#26357)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py b/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py
new file mode 100644
index 0000000000..4d85eb3659
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jupyterlab-widgets/package.py
@@ -0,0 +1,20 @@
+# 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 PyJupyterlabWidgets(PythonPackage):
+ """A JupyterLab extension."""
+
+ homepage = "https://github.com/jupyter-widgets/ipywidgets"
+ pypi = "jupyterlab_widgets/jupyterlab_widgets-1.0.2.tar.gz"
+
+ version('1.0.2', sha256='7885092b2b96bf189c3a705cc3c412a4472ec5e8382d0b47219a66cccae73cfa')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools@40.8.0:', type='build')
+ depends_on('py-jupyter-packaging@0.7.9:0.7.99', type='build')
+ depends_on('py-jupyterlab@3.0:3.99', type='build')