py-contrib: add new package (#49634)

This commit is contained in:
Adam J. Stewart 2025-03-27 19:07:33 +01:00 committed by GitHub
parent 13dd198a09
commit f0c676d14a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,23 @@
# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class PyContrib(PythonPackage):
"""A python package for making stacked area plots of contributions over time."""
homepage = "https://github.com/spack/contrib"
pypi = "contrib/contrib-0.3.0.tar.gz"
license("Apache-2.0 OR MIT")
version("0.3.0", sha256="55cf3a414c8b136f58588ec02e6833d1cc1d227a78f1778354ac6fcf9c2ccdda")
with default_args(type=("build", "run")):
depends_on("py-python-dateutil")
depends_on("py-jsonschema")
depends_on("py-matplotlib")
depends_on("py-pyyaml")
depends_on("py-setuptools")