From 1f4c44b1d47c2cc75cef75704ccd1cc386d5a862 Mon Sep 17 00:00:00 2001 From: Muriithi Frederick Muriuki Date: Fri, 14 Apr 2017 11:02:10 +0300 Subject: [PATCH 04/20] gnu: Add python-sphinx-rtd-theme-0.1.9 * gnu/packages/python.scm (python-sphinx-rtd-theme-0.1.9) New variable --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 73d217b..631b6fd 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14058,3 +14058,24 @@ scenarios") (define-public python2-pytest-httpbin (package-with-python2 python-pytest-httpbin)) + +(define-public python-sphinx-rtd-theme-0.1.9 + ;; python-httpretty has a hard requirement for + ;; python-sphinx-rtd-theme version 0.1.9 + (package + (inherit python-sphinx-rtd-theme) + (name "python-sphinx-rtd-theme") + (version "0.1.9") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinx_rtd_theme" version)) + (sha256 + (base32 + "18d0r63w7jpdrk4q5qy26n08vdlmnj9sar93akwjphyambw4cf17")))) + (propagated-inputs + `(("python-sphinx" ,python-sphinx-1.5.3) + ("python-snowballstemmer" ,python-snowballstemmer))))) + +(define-public python2-sphinx-rtd-theme-0.1.9 + (package-with-python2 python-sphinx-rtd-theme-0.1.9)) -- 2.10.2