
* py-jupyterhub: add version: 1.4.1 * dont need mako for latest release * sort dependencies * notebook isnt used for 1.4.1+ * add dependency on py-jupyter-telemetry; create new package py-jupyter-telemetry * py-jupyter-telemetry: declare missing dependencies * py-jupyterhub: need more specific depends_on before less specific * add py-json-logger; py-jupyter-telemetry: add depends_on for py-json-logger * Update var/spack/repos/builtin/packages/py-jupyter-telemetry/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * remove py-json-logger erroneously and duplicatively added * Update var/spack/repos/builtin/packages/py-jupyterhub/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * need py-alembic@1.4: for newest py-jupyterhub Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
24 lines
985 B
Python
24 lines
985 B
Python
# 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 PyJupyterTelemetry(PythonPackage):
|
|
"""Jupyter Telemetry enables Jupyter Applications to record events and transmit"""
|
|
""" them to destinations as structured data"""
|
|
|
|
pypi = "jupyter-telemetry/jupyter_telemetry-0.1.0.tar.gz"
|
|
|
|
version('0.1.0', sha256='445c613ae3df70d255fe3de202f936bba8b77b4055c43207edf22468ac875314')
|
|
version('0.0.5', sha256='d3eaac14be17510a4d288f3737580107ce14eef543e6133d56654d3f0e742b9b')
|
|
|
|
depends_on('py-python-json-logger', type=('build', 'run'))
|
|
depends_on('py-jsonschema', type=('build', 'run'))
|
|
depends_on('py-ruamel-yaml', type=('build', 'run'))
|
|
depends_on('py-setuptools', type=('build'))
|
|
depends_on('py-traitlets', type=('build', 'run'))
|
|
depends_on('python@3.5:', type=('build', 'run'))
|