23 lines
786 B
Python
23 lines
786 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyMplhepData(PythonPackage):
|
|
"""Font (Data) sub-package for mplhep"""
|
|
|
|
homepage = "https://github.com/scikit-hep/mplhep_data"
|
|
pypi = "mplhep_data/mplhep_data-0.0.3.tar.gz"
|
|
|
|
license("MIT")
|
|
|
|
version("0.0.4", sha256="cd1f3ad3af9dbff33aef9e7406d2130d624a0bd1d5aa5970fc713a6421165a4e")
|
|
version("0.0.3", sha256="b54d257f3f53c93a442cda7a6681ce267277e09173c0b41fd78820f78321772f")
|
|
|
|
depends_on("python@3.7:", type=("build", "run"))
|
|
depends_on("python@3.8:", type=("build", "run"), when="@0.0.4:")
|
|
depends_on("py-setuptools@42:", type="build")
|
|
depends_on("py-setuptools-scm@3.4:+toml", type="build")
|