26 lines
1.1 KiB
Python
26 lines
1.1 KiB
Python
# Copyright 2013-2022 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"
|
|
|
|
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"))
|
|
depends_on("py-typing@3.6:3", when="^python@2.7,3.4", type=("build", "run"))
|
|
depends_on("py-typing-extensions@3.6:3", when="^python@3.5.0:3.5.3", type=("build", "run"))
|
|
depends_on("py-enum34@1.1:1", when="^python@2.7", type=("build", "run"))
|