summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Pintarelli <1237199+simonpintarelli@users.noreply.github.com>2019-11-04 01:48:52 +0100
committerAdam J. Stewart <ajstewart426@gmail.com>2019-11-03 18:48:52 -0600
commitbcda14f8258daaf3475dd9d3ca3eb7b25aa0496c (patch)
tree27f402207e041d8d700a1ac019180cfc4994f459
parent1d8391a60c2fff12ec382f23b8202977d77ac212 (diff)
downloadspack-bcda14f8258daaf3475dd9d3ca3eb7b25aa0496c.tar.gz
spack-bcda14f8258daaf3475dd9d3ca3eb7b25aa0496c.tar.bz2
spack-bcda14f8258daaf3475dd9d3ca3eb7b25aa0496c.tar.xz
spack-bcda14f8258daaf3475dd9d3ca3eb7b25aa0496c.zip
Add py-voluptuous (#13457)
Data validation library
-rw-r--r--var/spack/repos/builtin/packages/py-voluptuous/package.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-voluptuous/package.py b/var/spack/repos/builtin/packages/py-voluptuous/package.py
new file mode 100644
index 0000000000..f63f1d9665
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-voluptuous/package.py
@@ -0,0 +1,16 @@
+# Copyright 2013-2019 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 PyVoluptuous(PythonPackage):
+ """Voluptous, despite the name, is a Python data validation library."""
+ homepage = "https://github.com/alecthomas/voluptuous"
+ url = "https://github.com/alecthomas/voluptuous/archive/0.11.5.tar.gz"
+
+ version('0.11.5', sha256='01adf0b6c6f61bd11af6e10ca52b7d4057dd0be0343eb9283c878cf3af56aee4')
+
+ depends_on('py-setuptools', type='build')