summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-sphinx-rtd-theme/package.py
blob: 17616c3a349c90175802943e9c56e50fd73d4b0d (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-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 PySphinxRtdTheme(PythonPackage):
    """ReadTheDocs.org theme for Sphinx."""

    homepage = "https://github.com/rtfd/sphinx_rtd_theme/"
    url      = "https://pypi.io/packages/source/s/sphinx_rtd_theme/sphinx_rtd_theme-0.1.10a0.tar.gz"

    import_modules = ['sphinx_rtd_theme']

    version('0.4.3',  sha256='728607e34d60456d736cc7991fd236afb828b21b82f956c5ea75f94c8414040a')
    version('0.2.5b1',  '0923473a43bd2527f32151f195f2a521')
    version('0.1.10a0', '83bd95cae55aa8b773a8cc3a41094282')

    depends_on('py-setuptools', type='build')