spack/var/spack/repos/builtin/packages/py-terminaltables/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

25 lines
816 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 PyTerminaltables(PythonPackage):
"""Generate simple tables in terminals from a nested list of strings."""
homepage = "https://github.com/Robpol86/terminaltables"
pypi = "terminaltables/terminaltables-3.1.0.tar.gz"
maintainers("dorton21")
license("MIT")
version("3.1.0", sha256="f3eb0eb92e3833972ac36796293ca0906e998dc3be91fbe1f8615b331b853b81")
depends_on("py-setuptools", type="build")
depends_on("py-colorama", type=("build", "run"))
depends_on("py-termcolor", type=("build", "run"))
depends_on("py-colorclass", type=("build", "run"))