35 lines
2.1 KiB
Python
35 lines
2.1 KiB
Python
# 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 PyJupyterClient(PythonPackage):
|
|
"""Jupyter protocol client APIs"""
|
|
|
|
homepage = "https://github.com/jupyter/jupyter_client"
|
|
url = "https://pypi.io/packages/source/j/jupyter-client/jupyter_client-6.1.7.tar.gz"
|
|
|
|
version('6.1.7', sha256='49e390b36fe4b4226724704ea28d9fb903f1a3601b6882ce3105221cd09377a1')
|
|
version('5.3.4', sha256='60e6faec1031d63df57f1cc671ed673dced0ed420f4377ea33db37b1c188b910')
|
|
version('5.2.4', sha256='b5f9cb06105c1d2d30719db5ffb3ea67da60919fb68deaefa583deccd8813551')
|
|
version('4.4.0', sha256='c99a52fac2e5b7a3b714e9252ebf72cbf97536d556ae2b5082baccc3e5cd52ee')
|
|
version('4.3.0', sha256='70b2e88403835a1d54b83858783d9e5e5771fa4bb6f6904e0b5bb8cfde4b99dd')
|
|
version('4.2.2', sha256='3ffc530eff0518fd9bfe3662423a2bec15d0628b9ca159921dd72f34ae004a14')
|
|
version('4.2.1', sha256='ffc4c11db26b099e4a6c9e51337ee12ba8025e01cd8f977ec08d7826d28ed3b8')
|
|
version('4.2.0', sha256='3026cda12d76356f2f3fb5c082811826aecc492e762b69c706ee166dd68ffccf')
|
|
version('4.1.1', sha256='ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8')
|
|
version('4.1.0', sha256='b1786dbf4752907292afed4a5a192572280a8794be0c499d1f530ae8e1550d57')
|
|
version('4.0.0', sha256='a39a4181ea2021daf6e821acae836999ef6e0fefe603813a7a7d4658d2ffa2ac')
|
|
|
|
depends_on('python@2.7:2.8,3.3:', type=('build', 'run'))
|
|
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'), when='@5:')
|
|
depends_on('python@3.5:', type=('build', 'run'), when='@6:')
|
|
depends_on('py-setuptools', type=('build', 'run'), when='@5:')
|
|
depends_on('py-traitlets', type=('build', 'run'))
|
|
depends_on('py-jupyter-core', type=('build', 'run'))
|
|
depends_on('py-jupyter-core@4.6.0:', type=('build', 'run'), when='@6:')
|
|
depends_on('py-pyzmq@13:', type=('build', 'run'))
|
|
depends_on('py-python-dateutil@2.1:', type=('build', 'run'), when='@5:')
|
|
depends_on('py-tornado@4.1:', type=('build', 'run'), when='@5:')
|