summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-dict2css/package.py
blob: 764170d5a97ac2452ce0c00a15c3a875857218f2 (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
# 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 PyDict2css(PythonPackage):
    """A μ-library for constructing cascading style sheets from Python dictionaries."""

    homepage = "https://github.com/sphinx-toolbox/dict2css"
    pypi = "dict2css/dict2css-0.3.0.tar.gz"

    maintainers("LydDeb")

    license("MIT")

    version("0.3.0", sha256="1e8b1bf580dca2083198f88a60ec88c878a8829d760dfe45483ef80fe2905117")

    depends_on("py-whey", type="build")
    depends_on("py-cssutils@2.2.0:", type=("build", "run"))
    depends_on("py-domdf-python-tools@2.2.0:", type=("build", "run"))