summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-dom-toml/package.py
blob: d9bfc1537b04e1532cba582ef383adb94df54692 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2024 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 PyDomToml(PythonPackage):
    """Dom's tools for Tom's Obvious, Minimal Language."""

    homepage = "https://github.com/domdfcoding/dom_toml"
    pypi = "dom_toml/dom_toml-0.6.1.tar.gz"

    license("MIT")

    version("0.6.1", sha256="a0bfc204ae32c72ed36e526dce56108a3b20741ac3c055207206ce3b2f302868")

    depends_on("py-flit-core@3.2:3", type="build")
    depends_on("py-domdf-python-tools@2.8:", type=("build", "run"))
    depends_on("py-toml@0.10.2:", type=("build", "run"))