summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-inquirerpy/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-inquirerpy/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-inquirerpy/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-inquirerpy/package.py b/var/spack/repos/builtin/packages/py-inquirerpy/package.py
new file mode 100644
index 0000000000..6ba944ce6f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-inquirerpy/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2023 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 PyInquirerpy(PythonPackage):
+ """Python port of Inquirer.js
+ (A collection of common interactive command-line user interfaces).
+ """
+
+ homepage = "https://github.com/kazhala/InquirerPy"
+ pypi = "inquirerpy/InquirerPy-0.3.4.tar.gz"
+
+ version("0.3.4", sha256="89d2ada0111f337483cb41ae31073108b2ec1e618a49d7110b0d7ade89fc197e")
+
+ depends_on("python@3.7:3", type=("build", "run"))
+ depends_on("py-poetry-core@1:", type="build")
+ depends_on("py-prompt-toolkit@3.0.1:3", type=("build", "run"))
+ depends_on("py-pfzy@0.3.1:0.3", type=("build", "run"))