diff options
author | iarspider <iarspider@gmail.com> | 2021-12-14 22:22:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 15:22:24 -0600 |
commit | e51337fcd990fe0406c3861c8931e2f5b9ec3aba (patch) | |
tree | 85b25ffb35fa51329a18f4ca7e22c478bcffb4f4 | |
parent | 3139894794eaa912997d2c5b7129b62aaed75989 (diff) | |
download | spack-e51337fcd990fe0406c3861c8931e2f5b9ec3aba.tar.gz spack-e51337fcd990fe0406c3861c8931e2f5b9ec3aba.tar.bz2 spack-e51337fcd990fe0406c3861c8931e2f5b9ec3aba.tar.xz spack-e51337fcd990fe0406c3861c8931e2f5b9ec3aba.zip |
New package: py-nbdime (#27995)
-rw-r--r-- | var/spack/repos/builtin/packages/py-nbdime/package.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-nbdime/package.py b/var/spack/repos/builtin/packages/py-nbdime/package.py new file mode 100644 index 0000000000..e52d5aae7d --- /dev/null +++ b/var/spack/repos/builtin/packages/py-nbdime/package.py @@ -0,0 +1,30 @@ +# 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 PyNbdime(PythonPackage): + """Diff and merge of Jupyter Notebooks""" + + homepage = "https://nbdime.readthedocs.io/" + pypi = "nbdime/nbdime-3.1.1.tar.gz" + + version('3.1.1', sha256='67767320e971374f701a175aa59abd3a554723039d39fae908e72d16330d648b') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools@40.8.0:', type='build') + depends_on('py-nbformat', type=('build', 'run')) + depends_on('py-colorama', type=('build', 'run')) + depends_on('py-pygments', type=('build', 'run')) + depends_on('py-tornado', type=('build', 'run')) + depends_on('py-requests', type=('build', 'run')) + depends_on('py-gitpython@:2.1.3,2.1.7:', type=('build', 'run')) + depends_on('py-jupyter-server', type=('build', 'run')) + depends_on('py-jupyter-server-mathjax@0.2.2:', type=('build', 'run')) + depends_on('py-jinja2@2.9:', type=('build', 'run')) + # From pyproject.toml + depends_on('py-jupyterlab@3.0:3', type=('build', 'run')) + depends_on('py-wheel', type='build') |