From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: Re: [PATCH 2/4] gnu: Add python-sphinx-1.5.2, python-sphinx-1.5.3 Date: Sun, 26 Mar 2017 15:10:58 +0000 Message-ID: <20170326151058.GB13943@monza> References: <20170326092335.3912-1-fredmanglis@gmail.com> <20170326092335.3912-2-fredmanglis@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34331) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs9qn-0006i4-Ue for guix-devel@gnu.org; Sun, 26 Mar 2017 11:13:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs9qi-00005S-VP for guix-devel@gnu.org; Sun, 26 Mar 2017 11:13:01 -0400 Received: from mail.thebird.nl ([95.154.246.10]:34524) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cs9qi-00005M-Og for guix-devel@gnu.org; Sun, 26 Mar 2017 11:12:56 -0400 Content-Disposition: inline In-Reply-To: <20170326092335.3912-2-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: Muriithi Frederick Muriuki Cc: guix-devel@gnu.org Hi Fred, Why do we need both versions? Pj. On Sun, Mar 26, 2017 at 12:23:33PM +0300, Muriithi Frederick Muriuki wrote: > * 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 >