diff options
author | takanori-ihara <62980219+takanori-ihara@users.noreply.github.com> | 2020-05-11 17:35:44 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 10:35:44 +0200 |
commit | e08792cbcbb9f1bb3b43abfb0984dd76679dbc50 (patch) | |
tree | 0592e16f1d07409618a055101c5b5bfb5b6a029d | |
parent | fa8dede6cd3dec2c7286d01f23f9bc34d6955949 (diff) | |
download | spack-e08792cbcbb9f1bb3b43abfb0984dd76679dbc50.tar.gz spack-e08792cbcbb9f1bb3b43abfb0984dd76679dbc50.tar.bz2 spack-e08792cbcbb9f1bb3b43abfb0984dd76679dbc50.tar.xz spack-e08792cbcbb9f1bb3b43abfb0984dd76679dbc50.zip |
py-jupyterlab: added package at v2.1.0 (#16562)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jupyterlab/package.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyterlab/package.py b/var/spack/repos/builtin/packages/py-jupyterlab/package.py new file mode 100644 index 0000000000..d1ae7844ea --- /dev/null +++ b/var/spack/repos/builtin/packages/py-jupyterlab/package.py @@ -0,0 +1,30 @@ +# Copyright 2013-2020 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 PyJupyterlab(PythonPackage): + """JupyterLab is the next-generation web-based user interface + for Project Jupyter.""" + + homepage = "https://jupyterlab.readthedocs.io/" + url = "https://pypi.io/packages/source/j/jupyterlab/jupyterlab-2.1.0.tar.gz" + + version('2.1.0', sha256='8c239aababf5baa0b3d36e375fddeb9fd96f3a9a24a8cda098d6a414f5bbdc81') + + depends_on('python@3:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + + depends_on('py-notebook@4.3.1:', type=('build', 'run')) + depends_on('py-tornado@6.0.3:', type=('build', 'run')) + depends_on('py-jupyterlab-server@1.1.0:', type=('build', 'run')) + depends_on('py-jinja2@2.10:', type=('build', 'run')) + + depends_on('py-pytest', type='test') + depends_on('py-pytest-check-links', type='test') + depends_on('py-requests', type='test') + depends_on('py-wheel', type='test') + depends_on('py-virtualenv', type='test') |