2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2021-09-02 06:58:24 +08:00
|
|
|
# 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'))
|