summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-jupyter-events/package.py
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2023-06-05 20:54:20 +0200
committerGitHub <noreply@github.com>2023-06-05 13:54:20 -0500
commita5cf5baa9e5494dde154002ed85368db85f563b1 (patch)
tree3cbc1e022ce267d218855a42653f485a336072a2 /var/spack/repos/builtin/packages/py-jupyter-events/package.py
parentec8039cc740361800c25aaa9f6d50ff6d82bf597 (diff)
downloadspack-a5cf5baa9e5494dde154002ed85368db85f563b1.tar.gz
spack-a5cf5baa9e5494dde154002ed85368db85f563b1.tar.bz2
spack-a5cf5baa9e5494dde154002ed85368db85f563b1.tar.xz
spack-a5cf5baa9e5494dde154002ed85368db85f563b1.zip
py-jupyterlab: add 4.0.1 incl. new dependencies (#38102)
Diffstat (limited to 'var/spack/repos/builtin/packages/py-jupyter-events/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-jupyter-events/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyter-events/package.py b/var/spack/repos/builtin/packages/py-jupyter-events/package.py
new file mode 100644
index 0000000000..71b9f7e9d8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jupyter-events/package.py
@@ -0,0 +1,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"))