From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH 5/5] gnu: Update Sphinx to 1.4.6. Date: Fri, 7 Oct 2016 12:32:50 +0200 Message-ID: <20161007103250.24046-6-dannym@scratchpost.org> References: <20161007103250.24046-1-dannym@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53642) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsSSe-0006TJ-6q for guix-devel@gnu.org; Fri, 07 Oct 2016 06:33:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bsSSb-0002C0-Af for guix-devel@gnu.org; Fri, 07 Oct 2016 06:33:03 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:38418) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsSSb-0002Bh-47 for guix-devel@gnu.org; Fri, 07 Oct 2016 06:33:01 -0400 In-Reply-To: <20161007103250.24046-1-dannym@scratchpost.org> 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): Updated. --- gnu/packages/python.scm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 157a544..da5b63d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2802,17 +2802,22 @@ reStructuredText.") (define-public python-sphinx (package (name "python-sphinx") - (version "1.2.3") + (version "1.4.6") (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")))) + "1lvr39ab5sjp894jshk39xidlxw9vc735882cgcfr4dlm4546hwy")))) (build-system python-build-system) + (native-inputs + `(("python-imagesize" ,python-imagesize) + ("python-sphinx-alabaster-theme-0.7" + ,python-sphinx-alabaster-theme-0.7) + ("python-babel" ,python-babel) + ("python-snowballstemmer" ,python-snowballstemmer) + ("python-six" ,python-six))) (inputs `(("python-setuptools" ,python-setuptools) ("python-jinja2" ,python-jinja2)