2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2019-11-07 00:55:19 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyAspyYaml(PythonPackage):
|
|
|
|
"""Some extensions to pyyaml."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/asottile/aspy.yaml/"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "aspy.yaml/aspy.yaml-1.3.0.tar.gz"
|
2019-11-07 00:55:19 +08:00
|
|
|
|
|
|
|
version('1.3.0', sha256='e7c742382eff2caed61f87a39d13f99109088e5e93f04d76eb8d4b28aa143f45')
|
|
|
|
|
|
|
|
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-pyyaml', type=('build', 'run'))
|