From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 2/4] gnu: Add python-sphinx-1.5.2, python-sphinx-1.5.3 Date: Sun, 26 Mar 2017 12:23:33 +0300 Message-ID: <20170326092335.3912-2-fredmanglis@gmail.com> References: <20170326092335.3912-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34634) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs4O5-0001UE-19 for guix-devel@gnu.org; Sun, 26 Mar 2017 05:23:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs4O3-0007ZO-Pe for guix-devel@gnu.org; Sun, 26 Mar 2017 05:23:01 -0400 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:32942) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cs4O3-0007Yx-J7 for guix-devel@gnu.org; Sun, 26 Mar 2017 05:22:59 -0400 Received: by mail-wm0-x242.google.com with SMTP id n11so5584803wma.0 for ; Sun, 26 Mar 2017 02:22:59 -0700 (PDT) In-Reply-To: <20170326092335.3912-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-1.5.2): New variable. * gnu/packages/python.scm (python-sphinx-1.5.3): New variable. --- gnu/packages/python.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 52be497..7bda780 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3104,6 +3104,38 @@ sources.") (license license:bsd-3) (properties `((python2-variant . ,(delay python2-sphinx)))))) +(define-public python-sphinx-1.5.2 + (package + (inherit python-sphinx) + (name "python-sphinx") + (version "1.5.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Sphinx" version)) + (sha256 + (base32 + "08n765wix63yfvxhnrhlahb2wqn877ypdpnldr571r0974wli704")))) + (native-inputs + `(("graphviz" ,graphviz) + ("python-html5lib" ,python-html5lib) + ("python-mock" ,python-mock) + ("python-nose" ,python-nose) + ("python-pytest" ,python-pytest-3.0.7))))) + +(define-public python-sphinx-1.5.3 + (package + (inherit python-sphinx-1.5.2) + (name "python-sphinx") + (version "1.5.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Sphinx" version)) + (sha256 + (base32 + "0kw1axswbvaavr8ggyf4qr6hnisnrzlbkkcdada69vk1x9xjassg")))))) + (define-public python2-sphinx (let ((base (package-with-python2 (strip-python2-variant python-sphinx)))) (package -- 2.10.2