summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-clint/package.py
blob: d863f1dfecfeda3eb2f5024a2d68eebe84db30bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PyClint(PythonPackage):
    """Python Command-line Application Tools"""

    homepage = "https://github.com/kennethreitz-archive/clint"
    pypi = "clint/clint-0.5.1.tar.gz"

    license("ISC")

    version("0.5.1", sha256="05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa")

    depends_on("py-setuptools", type="build")
    depends_on("py-args", type=("build", "run"))