summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-mdit-py-plugins/package.py
blob: 0b33022ebe7e8b239303f3a9a45a826b955e7d0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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 PyMditPyPlugins(PythonPackage):
    """Collection of core plugins for markdown-it-py"""

    homepage = "https://github.com/executablebooks/mdit-py-plugins/"
    git = "https://github.com/executablebooks/mdit-py-plugins/"
    pypi = "mdit-py-plugins/mdit-py-plugins-0.2.8.tar.gz"

    version("0.2.8", sha256="5991cef645502e80a5388ec4fc20885d2313d4871e8b8e320ca2de14ac0c015f")

    depends_on("py-setuptools", type="build")
    depends_on("py-markdown-it-py@1.0:1", type=("build", "run"))
    depends_on("python@3.6:3", type=("build", "run"))