diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-09-17 14:54:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 12:54:03 -0700 |
commit | 69d8417d8ad37982bbd9cf06561914166f531be4 (patch) | |
tree | 6e1804e29ba726e65178f1bdd29723af6e78038c | |
parent | 01df55214943130814908a63bfaa3f8822801920 (diff) | |
download | spack-69d8417d8ad37982bbd9cf06561914166f531be4.tar.gz spack-69d8417d8ad37982bbd9cf06561914166f531be4.tar.bz2 spack-69d8417d8ad37982bbd9cf06561914166f531be4.tar.xz spack-69d8417d8ad37982bbd9cf06561914166f531be4.zip |
py-nbclient: add new package (#18628)
-rw-r--r-- | var/spack/repos/builtin/packages/py-nbclient/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-nbclient/package.py b/var/spack/repos/builtin/packages/py-nbclient/package.py new file mode 100644 index 0000000000..e5284508b5 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-nbclient/package.py @@ -0,0 +1,23 @@ +# 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) + + +class PyNbclient(PythonPackage): + """A client library for executing notebooks. + + Formally nbconvert's ExecutePreprocessor.""" + + homepage = "https://jupyter.org/" + url = "https://pypi.io/packages/source/n/nbclient/nbclient-0.5.0.tar.gz" + + version('0.5.0', sha256='8ad52d27ba144fca1402db014857e53c5a864a2f407be66ca9d74c3a56d6591d') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-traitlets@4.2:', type=('build', 'run')) + depends_on('py-jupyter-client@6.1.5:', type=('build', 'run')) + depends_on('py-nbformat@5.0:', type=('build', 'run')) + depends_on('py-async-generator', type=('build', 'run')) + depends_on('py-nest-asyncio', type=('build', 'run')) |