summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTom Stitt <tomstitt@hey.com>2021-08-09 05:16:43 -0700
committerGitHub <noreply@github.com>2021-08-09 05:16:43 -0700
commita3f76740e7e4fac0bde7245502df8c5b77177f51 (patch)
treeef527752ef223b2bb9202216d4fd14068f0f44ed /var
parentbe59f2bff0ca9f45db7fd102a276f86f38381829 (diff)
downloadspack-a3f76740e7e4fac0bde7245502df8c5b77177f51.tar.gz
spack-a3f76740e7e4fac0bde7245502df8c5b77177f51.tar.bz2
spack-a3f76740e7e4fac0bde7245502df8c5b77177f51.tar.xz
spack-a3f76740e7e4fac0bde7245502df8c5b77177f51.zip
xwidgets: add new package (#25237)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/xwidgets/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/xwidgets/package.py b/var/spack/repos/builtin/packages/xwidgets/package.py
new file mode 100644
index 0000000000..836f2b2fc7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/xwidgets/package.py
@@ -0,0 +1,24 @@
+# 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 Xwidgets(CMakePackage):
+ """A C++ backend for Jupyter interactive widgets"""
+
+ homepage = "https://github.com/jupyter-xeus/xwidgets"
+ url = "https://github.com/jupyter-xeus/xwidgets/archive/0.25.0.tar.gz"
+ git = "https://github.com/jupyter-xeus/xwidgets.git"
+
+ maintainers = ['tomstitt']
+
+ version('master', branch='master')
+ version('0.25.0', sha256='7b6d36999e3b926c40389167c48b33f234a075365f089f89571b33a160421d8e')
+
+ depends_on('xtl@0.7.0:0.7.999', when='@0.25.0:')
+ depends_on('xproperty@0.11.0:0.11.999', when='@0.25.0:')
+ depends_on('xeus@1.0:1.999', when='@0.25.0:')
+ depends_on('nlohmann-json@3.6.1:3.999.999', when='@0.25.0:')