Add py-sphinxcontrib-jsmath package (#13276)
This commit is contained in:
parent
d4ac57f3a3
commit
7bda2fe292
1 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
|||
# Copyright 2013-2019 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 import *
|
||||
|
||||
|
||||
class PySphinxcontribJsmath(PythonPackage):
|
||||
"""A sphinx extension which renders display math in HTML via JavaScript."""
|
||||
|
||||
homepage = "http://sphinx-doc.org/"
|
||||
url = "https://pypi.io/packages/source/s/sphinxcontrib-jsmath/sphinxcontrib-jsmath-1.0.1.tar.gz"
|
||||
|
||||
version('1.0.1', sha256='a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8')
|
||||
|
||||
depends_on('python@3.5:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
|
||||
def test(self):
|
||||
# Requires sphinx, creating a circular dependency
|
||||
pass
|
Loading…
Reference in a new issue