summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-jupyter-events/package.py
blob: 71b9f7e9d8571bdfc15d3af7f6874dbc3e5cf9ea (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
# Copyright 2013-2023 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 PyJupyterEvents(PythonPackage):
    """Jupyter Event System library."""

    homepage = "https://github.com/jupyter/jupyter_events"
    pypi = "jupyter_events/jupyter_events-0.6.3.tar.gz"

    version("0.6.3", sha256="9a6e9995f75d1b7146b436ea24d696ce3a35bfa8bfe45e0c33c334c79464d0b3")

    depends_on("py-hatchling@1.5:", type="build")

    depends_on("py-jsonschema+format-nongpl@3.2:", type=("build", "run"))
    depends_on("py-python-json-logger@2.0.4:", type=("build", "run"))
    depends_on("py-pyyaml@5.3:", type=("build", "run"))
    depends_on("py-traitlets@5.3:", type=("build", "run"))
    depends_on("py-rfc3339-validator", type=("build", "run"))
    depends_on("py-rfc3986-validator@0.1.1:", type=("build", "run"))