summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-sphinx-basic-ng/package.py
blob: 95b513da00fcf42ac771c84ab895db84a7be4d39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2024 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 PySphinxBasicNg(PythonPackage):
    """A modern skeleton for Sphinx themes."""

    homepage = "https://github.com/pradyunsg/sphinx-basic-ng"
    pypi = "sphinx_basic_ng/sphinx_basic_ng-1.0.0b2.tar.gz"

    license("MIT")

    version("1.0.0b2", sha256="9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9")

    depends_on("py-setuptools", type="build")
    depends_on("py-sphinx@4:", type=("build", "run"))