spack/var/spack/repos/builtin/packages/py-notebook-shim/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

21 lines
698 B
Python

# 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 PyNotebookShim(PythonPackage):
"""A shim layer for notebook traits and config."""
homepage = "https://github.com/jupyter/notebook_shim"
pypi = "notebook_shim/notebook_shim-0.2.2.tar.gz"
version("0.2.2", sha256="090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f")
depends_on("python@3.7:", type=("build", "run"))
depends_on("py-hatchling@1:", type="build")
depends_on("py-jupyter-server@1.8:2", type=("build", "run"))