diff options
-rw-r--r-- | gnu/packages/sphinx.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index bdd91dd0fc..0218ee4ebc 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -396,6 +396,34 @@ documents click applications.") to code blocks.") (license license:expat))) +(define-public python-sphinx-design + (package + (name "python-sphinx-design") + (version "0.6.1") + (source + (origin + (method git-fetch) ; no tests in PyPI release + (uri (git-reference + (url "https://github.com/executablebooks/sphinx-design") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n3bxibg9p16i3c3l0w8j0aw9pi9dggz1ixllgrmd9d5hdn6kl57")))) + (build-system pyproject-build-system) + (native-inputs + (list python-flit-core + python-pytest + python-pytest-cov + python-pytest-regressions)) + (propagated-inputs + (list python-sphinx)) + (home-page "https://sphinx-design.readthedocs.io/en/furo-theme/") + (synopsis "Sphinx extension to designing responsive web components") + (description + "This package provides a sphinx extension for designing beautiful, view +size responsive web components.") + (license license:expat))) + (define-public python-sphinxcontrib-devhelp (package (name "python-sphinxcontrib-devhelp") |