summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-cleo/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-cleo/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-cleo/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cleo/package.py b/var/spack/repos/builtin/packages/py-cleo/package.py
new file mode 100644
index 0000000000..bf856363e8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-cleo/package.py
@@ -0,0 +1,19 @@
+# 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 PyCleo(PythonPackage):
+ """Cleo allows you to create beautiful and testable command-line interfaces."""
+
+ homepage = "https://github.com/sdispater/cleo"
+ pypi = "cleo/cleo-0.8.1.tar.gz"
+
+ version('0.8.1', sha256='3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f')
+
+ depends_on('python@2.7,3.4:3', type=('build', 'run'))
+ depends_on('py-poetry-core@1:', type='build')
+ depends_on('py-clikit@0.6.0:0.6', type=('build', 'run'))