20 lines
830 B
Python
20 lines
830 B
Python
# Copyright 2013-2023 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 PyHumanfriendly(PythonPackage):
|
|
"""Human friendly output for text interfaces using Python"""
|
|
|
|
homepage = "https://humanfriendly.readthedocs.io/"
|
|
pypi = "humanfriendly/humanfriendly-8.1.tar.gz"
|
|
|
|
version("8.2", sha256="bf52ec91244819c780341a3438d5d7b09f431d3f113a475147ac9b7b167a3d12")
|
|
version("8.1", sha256="25c2108a45cfd1e8fbe9cdb30b825d34ef5d5675c8e11e4775c9aedbfb0bdee2")
|
|
version("4.18", sha256="33ee8ceb63f1db61cce8b5c800c531e1a61023ac5488ccde2ba574a85be00a85")
|
|
|
|
depends_on("python@2.7:2.8,3.5:", type=("build", "run"))
|
|
depends_on("py-setuptools", type="build")
|