2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2020-07-27 23:30:22 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PySphinxcontribMermaid(PythonPackage):
|
|
|
|
"""This extension allows you to embed
|
|
|
|
`Mermaid <http://knsv.github.io/mermaid/>`_ graphs in your documents,
|
|
|
|
including general flowcharts, sequence and gantt diagrams."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/mgaitan/sphinxcontrib-mermaid"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "sphinxcontrib-mermaid/sphinxcontrib-mermaid-0.4.0.tar.gz"
|
2020-07-27 23:30:22 +08:00
|
|
|
|
2020-12-24 07:15:41 +08:00
|
|
|
version('0.4.0', sha256='0ee45ba45b9575505eacdd6212e4e545213f4f93dfa32c7eeca32720dbc3b468')
|
2020-07-27 23:30:22 +08:00
|
|
|
|
|
|
|
depends_on('py-sphinx@1.7:')
|