27 lines
1001 B
Python
27 lines
1001 B
Python
# 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 PyMatplotlibInline(PythonPackage):
|
|
"""Inline Matplotlib backend for Jupyter."""
|
|
|
|
homepage = "https://github.com/ipython/matplotlib-inline"
|
|
pypi = "matplotlib-inline/matplotlib-inline-0.1.2.tar.gz"
|
|
|
|
license("BSD-3-Clause")
|
|
|
|
version("0.1.6", sha256="f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304")
|
|
version("0.1.3", sha256="a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee")
|
|
version("0.1.2", sha256="f41d5ff73c9f5385775d5c0bc13b424535c8402fe70ea8210f93e11f3683993e")
|
|
|
|
depends_on("python@3.5:", type=("build", "run"))
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-traitlets", type=("build", "run"))
|
|
|
|
# Undocumented dependency
|
|
depends_on("py-matplotlib", type=("build", "run"))
|