summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-yamlreader/package.py
blob: 88a7656968c27bce2fd7b61cc0e6f329595273bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PyYamlreader(PythonPackage):
    """Yamlreader merges YAML data from a directory, a list of files or a
    file glob."""

    homepage = "http://pyyaml.org/wiki/PyYAML"
    url      = "https://pypi.io/packages/source/y/yamlreader/yamlreader-3.0.4.tar.gz"

    version('3.0.4', sha256='765688036d57104ac26e4500ab088d42f4f2d06687ce3daa26543d7ae38c2470')

    depends_on('py-setuptools', type=('build', 'run'))
    depends_on('py-pyyaml', type=('build', 'run'))
    depends_on('py-six', type=('build', 'run'))