py-python-benedict: new package (#21501)
* added py-python-benedict recipe * Update var/spack/repos/builtin/packages/py-python-benedict/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
parent
204e8f4fa4
commit
67667c96db
1 changed files with 31 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
# Copyright 2013-2021 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 PyPythonBenedict(PythonPackage):
|
||||
"""A dict subclass with keylist/keypath support, I/O shortcuts
|
||||
and many utilities."""
|
||||
|
||||
homepage = "https://github.com/fabiocaccamo/python-benedict"
|
||||
pypi = "python-benedict/python-benedict-0.22.2.tar.gz"
|
||||
|
||||
version('0.23.2', sha256='b7bdffd92ba1c9b9e044bda08ed545a48a45bd7a5207f93b4b2a8eb2660d1b4c')
|
||||
|
||||
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-ftfy@4.4.3', when='python@:3.3.999', type=('build', 'run'))
|
||||
depends_on('py-ftfy', when='python@3.4:', type=('build', 'run'))
|
||||
depends_on('py-mailchecker', type=('build', 'run'))
|
||||
depends_on('py-phonenumbers', type=('build', 'run'))
|
||||
depends_on('py-python-dateutil', type=('build', 'run'))
|
||||
depends_on('py-python-fsutil', type=('build', 'run'))
|
||||
depends_on('py-python-slugify', type=('build', 'run'))
|
||||
depends_on('py-pyyaml', type=('build', 'run'))
|
||||
depends_on('py-requests', type=('build', 'run'))
|
||||
depends_on('py-six', type=('build', 'run'))
|
||||
depends_on('py-toml', type=('build', 'run'))
|
||||
depends_on('py-xmltodict', type=('build', 'run'))
|
Loading…
Reference in a new issue