@@ -10939,3 +10939,31 @@ with an associated set of resolve methods that know how to fetch data.")
provide extendible implementations of common aspects of a cloud so that you can
focus on building massively scalable web applications.")
(license license:expat)))
+
+(define-public python-sphinx-bootstrap-theme
+ (package
+ (name "python-sphinx-bootstrap-theme")
+ (version "0.4.12")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "sphinx-bootstrap-theme" version))
+ (sha256
+ (base32
+ "0wmm292rpfzxaib7zf2j6kdl1dl2xzx303hx8sx8qsdy0pkmrk65"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f ; No tests.
+ #:configure-flags '("--single-version-externally-managed" "--root=/")))
+ (home-page "https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html")
+ (synopsis "Bootstrap theme for Sphinx")
+ (description "Sphinx theme that integrates the Bootstrap CSS / JavaScript
+framework with various layout options, hierarchical menu navigation, and
+mobile-friendly responsive design.")
+ (license license:expat)
+ (properties `((python2-variant . ,(delay python2-sphinx-bootstrap-theme))))))
+
+(define-public python2-sphinx-bootstrap-theme
+ (package (inherit (package-with-python2 (strip-python2-variant
+ python-sphinx-bootstrap-theme)))
+ (native-inputs
+ `(("python2-setuptools" ,python2-setuptools)))))