summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-04-24 20:01:09 -0500
committerGitHub <noreply@github.com>2020-04-24 20:01:09 -0500
commitdbd0fe8190ab373cdc6d386767d3deea91ee9b8b (patch)
treefd4ba56184bf679a9c91290272d304135efb51c4
parent7a2f47d1815be83902d2b063e9b1b4ebaf9eaa4b (diff)
downloadspack-dbd0fe8190ab373cdc6d386767d3deea91ee9b8b.tar.gz
spack-dbd0fe8190ab373cdc6d386767d3deea91ee9b8b.tar.bz2
spack-dbd0fe8190ab373cdc6d386767d3deea91ee9b8b.tar.xz
spack-dbd0fe8190ab373cdc6d386767d3deea91ee9b8b.zip
py-wasabi: add new package (#16296)
-rw-r--r--var/spack/repos/builtin/packages/py-wasabi/package.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-wasabi/package.py b/var/spack/repos/builtin/packages/py-wasabi/package.py
new file mode 100644
index 0000000000..c03d14f3e1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-wasabi/package.py
@@ -0,0 +1,16 @@
+# 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)
+
+
+class PyWasabi(PythonPackage):
+ """wasabi: A lightweight console printing and formatting toolkit."""
+
+ homepage = "https://ines.io/"
+ url = "https://pypi.io/packages/source/w/wasabi/wasabi-0.6.0.tar.gz"
+
+ version('0.6.0', sha256='b8dd3e963cd693fde1eb6bfbecf51790171aa3534fa299faf35cf269f2fd6063')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pytest', type='test')