summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAxel Huebl <axel.huebl@plasma.ninja>2022-09-01 12:25:59 -0700
committerGitHub <noreply@github.com>2022-09-01 19:25:59 +0000
commitce1500fad37e994bdbe2edd2e9f9203c30db5418 (patch)
treebca3967a525ac03165db576dcdf04cb78db241a9 /var
parent117b0af831f1be8bdce1ee740a8ddde4b2a1362a (diff)
downloadspack-ce1500fad37e994bdbe2edd2e9f9203c30db5418.tar.gz
spack-ce1500fad37e994bdbe2edd2e9f9203c30db5418.tar.bz2
spack-ce1500fad37e994bdbe2edd2e9f9203c30db5418.tar.xz
spack-ce1500fad37e994bdbe2edd2e9f9203c30db5418.zip
Add: py-sphinx-design (#32482)
* Add: py-sphinx-design Needed for #32480
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-sphinx-design/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinx-design/package.py b/var/spack/repos/builtin/packages/py-sphinx-design/package.py
new file mode 100644
index 0000000000..99ebc222c8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sphinx-design/package.py
@@ -0,0 +1,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 PySphinxDesign(PythonPackage):
+ """A sphinx extension for designing beautiful, screen-size responsive web components."""
+
+ homepage = "https://sphinx-design.readthedocs.io"
+ pypi = "sphinx-design/sphinx_design-0.3.0.tar.gz"
+
+ maintainers = ["ax3l", "adamjstewart"]
+
+ version("0.3.0", sha256="7183fa1fae55b37ef01bda5125a21ee841f5bbcbf59a35382be598180c4cefba")
+
+ depends_on("python@3.7:", type=("build", "run"))
+ depends_on("py-flit-core@3.4:3", type=("build"))
+ depends_on("py-sphinx@4:5", type=("build", "run"))