summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-clikit/package.py
blob: 01b7fa19f7b8ed2d77362e53f10b1385d1b3a9b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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 PyClikit(PythonPackage):
    """CliKit is a group of utilities to build beautiful and testable
    command line interfaces."""

    homepage = "https://github.com/sdispater/clikit"
    pypi = "clikit/clikit-0.6.2.tar.gz"

    license("MIT")

    version("0.6.2", sha256="442ee5db9a14120635c5990bcdbfe7c03ada5898291f0c802f77be71569ded59")

    depends_on("python@2.7,3.4:3", type=("build", "run"))
    depends_on("py-poetry-core@1:", type="build")
    depends_on("py-pastel@0.2.0:0.2", type=("build", "run"))
    depends_on("py-pylev@1.3:1", type=("build", "run"))
    depends_on("py-crashtest@0.3.0:0.3", when="^python@3.6:3", type=("build", "run"))