diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-07-09 13:37:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 11:37:08 +0000 |
commit | 4a44f023e8251bde612a4792cc409ec280ed4622 (patch) | |
tree | 044a5e836a053023132e0681ac04c679c0ba1d0b | |
parent | 1b26c47cb8db0970fed6ffec59c6064dd2f3aa9e (diff) | |
download | spack-4a44f023e8251bde612a4792cc409ec280ed4622.tar.gz spack-4a44f023e8251bde612a4792cc409ec280ed4622.tar.bz2 spack-4a44f023e8251bde612a4792cc409ec280ed4622.tar.xz spack-4a44f023e8251bde612a4792cc409ec280ed4622.zip |
py-jupyter-server: add new package (#24777)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jupyter-server/package.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyter-server/package.py b/var/spack/repos/builtin/packages/py-jupyter-server/package.py new file mode 100644 index 0000000000..b63cd6ae39 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-jupyter-server/package.py @@ -0,0 +1,36 @@ +# 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 PyJupyterServer(PythonPackage): + """The Jupyter Server provides the backend (i.e. the core services, APIs, + and REST endpoints) for Jupyter web applications like Jupyter notebook, + JupyterLab, and Voila.""" + + homepage = "https://github.com/jupyter-server/jupyter_server" + pypi = "jupyter_server/jupyter_server-1.9.0.tar.gz" + + version('1.9.0', sha256='7d19006380f6217458a9db309b54e3dab87ced6c06329c61823907bef2a6f51b') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-jinja2', type=('build', 'run')) + depends_on('py-tornado@6.1.0:', type=('build', 'run')) + depends_on('py-pyzmq@17:', type=('build', 'run')) + depends_on('py-argon2-cffi', type=('build', 'run')) + depends_on('py-ipython-genutils', type=('build', 'run')) + depends_on('py-traitlets@4.2.1:', type=('build', 'run')) + depends_on('py-jupyter-core@4.6.0:', type=('build', 'run')) + depends_on('py-jupyter-client@6.1.1:', type=('build', 'run')) + depends_on('py-nbformat', type=('build', 'run')) + depends_on('py-nbconvert', type=('build', 'run')) + depends_on('py-send2trash', type=('build', 'run')) + depends_on('py-terminado@0.8.3:', type=('build', 'run')) + depends_on('py-prometheus-client', type=('build', 'run')) + depends_on('py-anyio@3.1.0:3.99', type=('build', 'run')) + depends_on('py-websocket-client', type=('build', 'run')) + depends_on('py-requests-unixsocket', type=('build', 'run')) |