From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 04/20] gnu: Add python-sphinx-rtd-theme-0.1.9 Date: Fri, 14 Apr 2017 13:13:04 +0300 Message-ID: <20170414101320.11755-4-fredmanglis@gmail.com> References: <20170414101320.11755-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43956) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cyyDv-0000k3-Ce for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cyyDs-0005CV-31 for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:03 -0400 Received: from mail-wm0-x244.google.com ([2a00:1450:400c:c09::244]:34568) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cyyDr-0005Bk-TB for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:00 -0400 Received: by mail-wm0-x244.google.com with SMTP id x75so17129373wma.1 for ; Fri, 14 Apr 2017 03:12:59 -0700 (PDT) In-Reply-To: <20170414101320.11755-1-fredmanglis@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: pjotr2017@thebird.nl * 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