New package: py-click-repl (#19076)

This commit is contained in:
Joe Koning 2020-10-02 13:16:24 -07:00 committed by GitHub
parent d8dadd1435
commit bc17b78b47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
# Copyright 2013-2020 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 import *
class PyClickRepl(PythonPackage):
"""Subcommand REPL for click apps """
homepage = "https://github.com/click-contrib/click-repl"
url = "https://files.pythonhosted.org/packages/51/99/6a722e232f92fdc21c46fd042fea63e7c2fcda3086ff5db62edd595d3f49/click-repl-0.1.6.tar.gz"
version('0.1.6', sha256='b9f29d52abc4d6059f8e276132a111ab8d94980afe6a5432b9d996544afa95d5')
depends_on('python@3.0:', type=('build', 'run'))
depends_on('py-click', type=('build', 'run'))
depends_on('py-prompt-toolkit', type=('build', 'run'))
depends_on('py-setuptools', type='build')