
* py-flatten-dict: new recipe * Update var/spack/repos/builtin/packages/py-flatten-dict/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-flatten-dict: fix dependencies * py-flatten-dict: fix dependency Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
23 lines
790 B
Python
23 lines
790 B
Python
# 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 PyFlattenDict(PythonPackage):
|
|
"""A flexible utility for flattening and unflattening dict-lik objects
|
|
in Python"""
|
|
|
|
homepage = "https://github.com/ianlini/flatten-dict"
|
|
pypi = "flatten-dict/flatten-dict-0.3.0.tar.gz"
|
|
|
|
version('0.3.0', sha256='0ccc43f15c7c84c5ef387ad19254f6769a32d170313a1bcbf4ce582089313d7e')
|
|
|
|
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-six@1.12:1.999', type=('build', 'run'))
|
|
depends_on('py-pathlib2@2.3:2.999', type=('build', 'run'))
|