2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-03-02 02:29:22 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-03-02 02:29:22 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyClick(PythonPackage):
|
|
|
|
"""A simple wrapper around optparse for powerful command line utilities."""
|
|
|
|
|
|
|
|
homepage = "http://github.com/mitsuhiko/click"
|
|
|
|
url = "https://pypi.io/packages/source/c/click/click-6.6.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('6.6', sha256='cc6a19da8ebff6e7074f731447ef7e112bd23adf3de5c597cf9989f2fd8defe9')
|
2017-03-02 02:29:22 +08:00
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|