From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 31/31] gnu: Add python-sphinx. Date: Fri, 5 Sep 2014 11:18:37 -0400 Message-ID: <1409930317-13220-31-git-send-email-dthompson2@worcester.edu> References: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIT-0001vE-NJ for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvIN-0003ql-1i for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:33 -0400 Received: from na3sys009aog133.obsmtp.com ([74.125.149.82]:35417) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIM-0003q2-Gv for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:26 -0400 Received: by mail-yh0-f45.google.com with SMTP id i57so7421054yha.4 for ; Fri, 05 Sep 2014 08:19:25 -0700 (PDT) In-Reply-To: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-sphinx, python2-sphinx): New variables. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 7dc0a46..e366e73 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1867,3 +1867,32 @@ reStructuredText.") (define-public python2-pygments (package-with-python2 python-pygments)) +(define-public python-sphinx + (package + (name "python-sphinx") + (version "1.2.3") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/S/Sphinx/Sphinx-" + version ".tar.gz")) + (sha256 + (base32 + "011xizm3jnmf4cvs5i6kgf6c5nn046h79i8j0vd0f27yw9j3p4wl")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools) + ("python-jinja2" ,python-jinja2) + ("python-docutils" ,python-docutils) + ("python-pygments" ,python-pygments))) + (home-page "http://sphinx-doc.org/") + (synopsis "Python documentation generator") + (description "Sphinx is a tool that makes it easy to create documentation +for Python projects or other documents consisting of multiple reStructuredText +sources.") + (license bsd-3))) + +(define-public python2-sphinx + (package-with-python2 python-sphinx)) + -- 2.0.1