summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-12-07 22:14:34 -0600
committerGitHub <noreply@github.com>2019-12-07 22:14:34 -0600
commit0a1d2a45f4f8f73cafb085d2b95676b20fb1a957 (patch)
tree8e9173883c8fa47e8248bf18902e74e1114dd9dc
parentdb1026cb626d8ebfa231da59fa33c5b4e93efe91 (diff)
downloadspack-0a1d2a45f4f8f73cafb085d2b95676b20fb1a957.tar.gz
spack-0a1d2a45f4f8f73cafb085d2b95676b20fb1a957.tar.bz2
spack-0a1d2a45f4f8f73cafb085d2b95676b20fb1a957.tar.xz
spack-0a1d2a45f4f8f73cafb085d2b95676b20fb1a957.zip
Add py-jupyter package (#14035)
-rw-r--r--var/spack/repos/builtin/packages/py-jupyter/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyter/package.py b/var/spack/repos/builtin/packages/py-jupyter/package.py
new file mode 100644
index 0000000000..be3ca42695
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jupyter/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2019 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 PyJupyter(PythonPackage):
+ """Jupyter metapackage. Install all the Jupyter components in one go."""
+
+ homepage = "https://jupyter.org/"
+ url = "https://pypi.io/packages/source/j/jupyter/jupyter-1.0.0.tar.gz"
+
+ version('1.0.0', sha256='d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f')
+
+ depends_on('py-notebook', type=('build', 'run'))
+ depends_on('py-qtconsole', type=('build', 'run'))
+ depends_on('py-jupyter-console', type=('build', 'run'))
+ depends_on('py-nbconvert', type=('build', 'run'))
+ depends_on('py-ipykernel', type=('build', 'run'))
+ depends_on('py-ipywidgets', type=('build', 'run'))