spack/var/spack/repos/builtin/packages/py-art/package.py
Christopher Christofi 65fa71c1b4
py-pycm: new package (#43251)
Co-authored-by: Harmen Stoppels <harmenstoppels@gmail.com>
Signed-off-by: Bernhard Kaindl <bernhardkaindl7@gmail.com>
2024-03-20 19:02:36 +01:00

21 lines
588 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 PyArt(PythonPackage):
"""ASCII art library for Python."""
homepage = "https://www.ascii-art.site"
pypi = "art/art-6.1.tar.gz"
license("MIT")
version("6.1", sha256="6ab3031e3b7710039e73497b0e750cadfe04d4c1279ce3a123500dbafb9e1b64")
depends_on("python@3.5:", type=("build", "run"))
depends_on("py-setuptools", type="build")