Skip to content
Snippets Groups Projects

fix(py-ipympl): upgrade typescript version

Merged Eleni Mathioulaki requested to merge fix-py-ipympl into master
2 files
+ 48
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 34
0
# 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 PyIpympl(PythonPackage):
"""Matplotlib Jupyter Extension."""
homepage = "https://github.com/matplotlib/ipympl"
pypi = "ipympl/ipympl-0.8.8.tar.gz"
maintainers("haralmha")
version("0.8.8", sha256="5bf5d780b07fafe7924922ac6b2f3abd22721f341e5e196b3b82737dfbd0e1c9")
depends_on("py-setuptools@40.8:", type="build")
depends_on("py-ipython@:8", type=("build", "run"))
depends_on("py-numpy", type=("build", "run"))
depends_on("py-ipython-genutils", type=("build", "run"))
depends_on("pil", type=("build", "run"))
depends_on("py-traitlets@:5", type=("build", "run"))
depends_on("py-ipywidgets@7.6:7", type=("build", "run"))
depends_on("py-matplotlib@2:3", type=("build", "run"))
depends_on("py-jupyter-packaging@0.7", type="build")
depends_on("py-jupyterlab@3", type="build")
depends_on("yarn", type="build")
# begin EBRAINS (added): use newer typescript
# (see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/69932)
patch("typescript_version.patch", when="@0.8.8")
# end EBRAINS