summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin S <3630356+codeandkey@users.noreply.github.com>2020-04-09 17:12:17 -0500
committerGitHub <noreply@github.com>2020-04-09 17:12:17 -0500
commit2d220c8eb0288b551f3019c68d12c16bd2754899 (patch)
treec61c6e3e44edbcb4b5914c05f16015493ae8f41a
parent35c4f614c4255dbd5c8d5ab7ac93c7bd79b5e397 (diff)
downloadspack-2d220c8eb0288b551f3019c68d12c16bd2754899.tar.gz
spack-2d220c8eb0288b551f3019c68d12c16bd2754899.tar.bz2
spack-2d220c8eb0288b551f3019c68d12c16bd2754899.tar.xz
spack-2d220c8eb0288b551f3019c68d12c16bd2754899.zip
py-clint: new package at 0.5.1 (#15905)
* py-clint: new package at 0.5.1 * py-clint: update py-setuptools dep type
-rw-r--r--var/spack/repos/builtin/packages/py-clint/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-clint/package.py b/var/spack/repos/builtin/packages/py-clint/package.py
new file mode 100644
index 0000000000..e8a82f5ddf
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-clint/package.py
@@ -0,0 +1,18 @@
+# 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 PyClint(PythonPackage):
+ """Python Command-line Application Tools"""
+
+ homepage = "https://github.com/kennethreitz-archive/clint"
+ url = "https://pypi.io/packages/source/c/clint/clint-0.5.1.tar.gz"
+
+ version('0.5.1', sha256='05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-args', type=('build', 'run'))