summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-colorclass/package.py
blob: 6c4d8ca621bad5144eabb1878262e44d03a72b38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyColorclass(PythonPackage):
    """Colorful worry-free console applications for Linux, Mac OS X, and Windows."""

    homepage = "https://github.com/Robpol86/colorclass"
    pypi = "colorclass/colorclass-2.2.0.tar.gz"

    license("MIT")

    version("2.2.0", sha256="b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b")

    depends_on("python@3.3.0:")
    depends_on("py-setuptools", type="build")
    depends_on("py-docopt", type=("build", "run"))