From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXCGP-0005iJ-Qi for guix-patches@gnu.org; Mon, 17 Jul 2017 16:05:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXCGO-0005tN-MR for guix-patches@gnu.org; Mon, 17 Jul 2017 16:05:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42192) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dXCGO-0005t2-It for guix-patches@gnu.org; Mon, 17 Jul 2017 16:05:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dXCGO-00065D-9S for guix-patches@gnu.org; Mon, 17 Jul 2017 16:05:04 -0400 Subject: [bug#27742] [PATCH 3/3] gnu: Add python-sphinx-1.6. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55220) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXCFW-0005Hs-RL for guix-patches@gnu.org; Mon, 17 Jul 2017 16:04:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXCFV-0005Xu-Vj for guix-patches@gnu.org; Mon, 17 Jul 2017 16:04:10 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21001) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dXCFV-0005Xd-Ou for guix-patches@gnu.org; Mon, 17 Jul 2017 16:04:09 -0400 From: Ricardo Wurmus Date: Mon, 17 Jul 2017 22:03:50 +0200 Message-Id: <20170717200350.29162-3-rekado@elephly.net> In-Reply-To: <20170717200350.29162-1-rekado@elephly.net> References: <20170717200350.29162-1-rekado@elephly.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27742@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/python.scm (python-sphinx-1.6): New variable. --- gnu/packages/python.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 2cc282ac3..2e5eec2a9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3235,6 +3235,36 @@ sources.") (license license:bsd-3) (properties `((python2-variant . ,(delay python2-sphinx)))))) +(define-public python-sphinx-1.6 + (package (inherit python-sphinx) + (name "python-sphinx") + (version "1.6.3") + (source (origin + (method url-fetch) + (uri (pypi-uri "Sphinx" version)) + (sha256 + (base32 + "1rj6f3i8hmrx2qlkshi5kp5xcy98dlynwlyl05yvflj5f66dp2xg")))) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + ;; Requires Internet access. + (delete-file "tests/test_build_linkcheck.py") + (substitute* "tests/test_build_latex.py" + (("@pytest.mark.sphinx\\('latex', testroot='images'\\)") + "@pytest.mark.skip()")) + (zero? (system* "make" "test"))))))) + (propagated-inputs + `(("python-sphinxcontrib-websupport" ,python-sphinxcontrib-websupport) + ,@(package-propagated-inputs python-sphinx))) + (native-inputs + `(("python-pytest" ,python-pytest-3.0) + ("imagemagick" ,imagemagick) ; for "convert" + ,@(package-native-inputs python-sphinx))) + (properties '()))) + (define-public python-sphinx-1.5.3 (package (inherit python-sphinx) -- 2.13.3