summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-yacman/package.py
blob: e27d61ae8aa852b67f28629474980038f897028d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2023 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.package import *


class PyYacman(PythonPackage):
    """A YAML configuration manager."""

    homepage = "https://github.com/databio/yacman"
    pypi = "yacman/yacman-0.8.4.tar.gz"

    license("BSD-2-Clause")

    version("0.8.4", sha256="807972d7f9251f71401fc4ff6c01734ccdad1f92cefd1fd251336a2a094608bd")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type="build")

    depends_on("py-attmap@0.13.0:", type=("build", "run"))
    depends_on("py-jsonschema@3.2.0:", type=("build", "run"))
    depends_on("py-oyaml", type=("build", "run"))
    depends_on("py-pyyaml@3.13:", type=("build", "run"))
    depends_on("py-ubiquerg@0.6.1:", type=("build", "run"))