diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2022-05-21 18:28:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-21 11:28:53 -0500 |
commit | 870b997cb6794a3735ee81c2f5b1a2573b54a667 (patch) | |
tree | 506a84ee896dcac3f38a0c8bbf5e5ba8fc778848 | |
parent | c9492f1cd4d546e42188d945bd16b4538ebd087a (diff) | |
download | spack-870b997cb6794a3735ee81c2f5b1a2573b54a667.tar.gz spack-870b997cb6794a3735ee81c2f5b1a2573b54a667.tar.bz2 spack-870b997cb6794a3735ee81c2f5b1a2573b54a667.tar.xz spack-870b997cb6794a3735ee81c2f5b1a2573b54a667.zip |
py-ww: add new package (#30767)
* py-ww: add new package
* Add missing py-pytest-runner dependency
-rw-r--r-- | var/spack/repos/builtin/packages/py-ww/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ww/package.py b/var/spack/repos/builtin/packages/py-ww/package.py new file mode 100644 index 0000000000..8371d12458 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-ww/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2022 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 PyWw(PythonPackage): + """Wrappers for Python builtins with higher-level APIs.""" + + homepage = "https://github.com/tygs/ww/" + pypi = "ww/ww-0.2.1.tar.gz" + + version('0.2.1', sha256='3664f1f91bf927fe597ab153e8df73c8954927258b3737220efd1cb9912ebd7e') + + depends_on('py-setuptools', type='build') + depends_on('py-pytest-runner', type='build') + + depends_on('py-chardet', type=('build', 'run')) + depends_on('py-formatizer', type=('build', 'run')) + depends_on('py-future', type=('build', 'run')) + depends_on('py-six', type=('build', 'run')) |