summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@ovgu.de>2021-02-14 18:46:52 +0100
committerGitHub <noreply@github.com>2021-02-14 11:46:52 -0600
commit155bbab44bf8cac1d793d64aea257bbf4a03f77e (patch)
tree2a17bcc7f4a46fd9b7afd5f95a06103b4139330d /var
parentb111ef48da866ae50ca7fa9dfb66b1ba7643d948 (diff)
downloadspack-155bbab44bf8cac1d793d64aea257bbf4a03f77e.tar.gz
spack-155bbab44bf8cac1d793d64aea257bbf4a03f77e.tar.bz2
spack-155bbab44bf8cac1d793d64aea257bbf4a03f77e.tar.xz
spack-155bbab44bf8cac1d793d64aea257bbf4a03f77e.zip
py-questionary: new package (#21658)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-questionary/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-questionary/package.py b/var/spack/repos/builtin/packages/py-questionary/package.py
new file mode 100644
index 0000000000..62b21eed9e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-questionary/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2021 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 PyQuestionary(PythonPackage):
+ """Questionary is a Python library for effortlessly building pretty
+ command line interfaces."""
+
+ homepage = "https://github.com/tmbo/questionary"
+ pypi = "questionary/questionary-1.9.0.tar.gz"
+
+ version('1.9.0', sha256='a050fdbb81406cddca679a6f492c6272da90cb09988963817828f697cf091c55')
+
+ depends_on('python@3.6:3.9.999', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-prompt-toolkit@2.0:3.99', type=('build', 'run'))