py-matplotlib-inline: add new package (#25524)

This commit is contained in:
Adam J. Stewart 2021-08-20 06:35:55 -05:00 committed by GitHub
parent 6ce0d934cf
commit 1d2798dd77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
# Copyright 2013-2021 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 import *
class PyMatplotlibInline(PythonPackage):
"""Inline Matplotlib backend for Jupyter."""
homepage = "https://github.com/martinRenou/matplotlib-inline"
pypi = "matplotlib-inline/matplotlib-inline-0.1.2.tar.gz"
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'))