summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"))