summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-jupyter-telemetry/package.py
blob: ef6df789290345b768f7e12eeed3b4e162123a22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2013-2024 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.package 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"

    license("BSD-3-Clause")

    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"))