diff options
author | Andreas Baumbach <healther@users.noreply.github.com> | 2019-11-05 19:47:52 +0100 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-11-05 12:47:52 -0600 |
commit | 35f0003c08f9b28eb206668b585aa5d3a71e27b0 (patch) | |
tree | f1b1057ac489b1e5bf78c0b8ac888d219775a89a /var | |
parent | aa2972172a0fefb387ce46e2cc25adc84c4a04cb (diff) | |
download | spack-35f0003c08f9b28eb206668b585aa5d3a71e27b0.tar.gz spack-35f0003c08f9b28eb206668b585aa5d3a71e27b0.tar.bz2 spack-35f0003c08f9b28eb206668b585aa5d3a71e27b0.tar.xz spack-35f0003c08f9b28eb206668b585aa5d3a71e27b0.zip |
new package py-cfgv (#13592)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-cfgv/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cfgv/package.py b/var/spack/repos/builtin/packages/py-cfgv/package.py new file mode 100644 index 0000000000..d3c53fefe0 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-cfgv/package.py @@ -0,0 +1,19 @@ +# 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 PyCfgv(PythonPackage): + """Validate configuration and produce human readable error messages.""" + + homepage = "https://github.com/asottile/cfgv/" + url = "https://pypi.io/packages/source/c/cfgv/cfgv-2.0.1.tar.gz" + + version('2.0.1', sha256='edb387943b665bf9c434f717bf630fa78aecd53d5900d2e05da6ad6048553144') + + depends_on('python@2.7:2.8,3.4:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-six', type=('build', 'run')) |