summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJoe Koning <koning@users.noreply.github.com>2020-10-02 13:16:24 -0700
committerGitHub <noreply@github.com>2020-10-02 13:16:24 -0700
commitbc17b78b47b411cda5f9c5733b1a3ef21110fd0a (patch)
treeb4cd5c0f5f060271d1f4c970364628656c9c4b28 /var
parentd8dadd1435d6c7fcac3321921a5b294ecc2123e9 (diff)
downloadspack-bc17b78b47b411cda5f9c5733b1a3ef21110fd0a.tar.gz
spack-bc17b78b47b411cda5f9c5733b1a3ef21110fd0a.tar.bz2
spack-bc17b78b47b411cda5f9c5733b1a3ef21110fd0a.tar.xz
spack-bc17b78b47b411cda5f9c5733b1a3ef21110fd0a.zip
New package: py-click-repl (#19076)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-click-repl/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-click-repl/package.py b/var/spack/repos/builtin/packages/py-click-repl/package.py
new file mode 100644
index 0000000000..11e1a693ae
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-click-repl/package.py
@@ -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')