From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 4/5] gnu: python-sphinx: Update to 1.4.4. Date: Fri, 1 Jul 2016 21:04:52 -0400 Message-ID: References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJ9Mw-0001xE-Gm for guix-devel@gnu.org; Fri, 01 Jul 2016 21:05:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJ9Mu-0001NR-7j for guix-devel@gnu.org; Fri, 01 Jul 2016 21:05:14 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:57247) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJ9Mt-0001Da-1g for guix-devel@gnu.org; Fri, 01 Jul 2016 21:05:12 -0400 Received: from localhost.localdomain (c-73-188-17-148.hsd1.pa.comcast.net [73.188.17.148]) by mail.messagingengine.com (Postfix) with ESMTPA id F1928F29EE for ; Fri, 1 Jul 2016 21:05:02 -0400 (EDT) In-Reply-To: In-Reply-To: References: 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 * gnu/packages/python.scm (python-sphinx, python2-sphinx): Update to 1.4.4. [source]: Use pypi-uri. [inputs]: Add python-alabaster, python-babel, python-imagesize, python-six. [propagated-inputs]: New field. --- gnu/packages/python.scm | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 73312e8..fd4cc3d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2658,22 +2658,29 @@ reStructuredText.") (define-public python-sphinx (package (name "python-sphinx") - (version "1.2.3") + (version "1.4.4") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/S/Sphinx/Sphinx-" - version ".tar.gz")) + (uri (pypi-uri "Sphinx" version)) (sha256 (base32 - "011xizm3jnmf4cvs5i6kgf6c5nn046h79i8j0vd0f27yw9j3p4wl")))) + "185zklh44fhrwp1dg6251g3w6zmssh5jzvbz8pvmkg9l6wvxdzry")))) (build-system python-build-system) (inputs - `(("python-setuptools" ,python-setuptools) - ("python-jinja2" ,python-jinja2) + `( + ("python-alabaster" ,python-alabaster) + ("python-babel" ,python-babel) ("python-docutils" ,python-docutils) - ("python-pygments" ,python-pygments))) + ("python-imagesize" ,python-imagesize) + ("python-jinja2" ,python-jinja2) + ("python-pygments" ,python-pygments) + ("python-pytz" ,python-pytz) + ("python-setuptools" ,python-setuptools) + ("python-six" ,python-six))) + (propagated-inputs + `(("python-pytz" ,python-pytz) + ("python-snowballstemmer" ,python-snowballstemmer))) (home-page "http://sphinx-doc.org/") (synopsis "Python documentation generator") (description "Sphinx is a tool that makes it easy to create documentation -- 2.9.0