From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1DGJ-0003hD-OV for guix-patches@gnu.org; Sun, 08 Oct 2017 11:13:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1DGI-000461-6M for guix-patches@gnu.org; Sun, 08 Oct 2017 11:13:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47834) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e1DGI-00045s-37 for guix-patches@gnu.org; Sun, 08 Oct 2017 11:13:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e1DGH-0004Tm-Tn for guix-patches@gnu.org; Sun, 08 Oct 2017 11:13:01 -0400 Subject: [bug#28748] [PATCH] gnu: Add python-guzzle-sphinx-theme. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51816) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1DFd-0003fF-Jy for guix-patches@gnu.org; Sun, 08 Oct 2017 11:12:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1DFc-0003nk-93 for guix-patches@gnu.org; Sun, 08 Oct 2017 11:12:21 -0400 Received: from tobias.gr ([2001:470:cc92::1]:54318) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e1DFb-0003n1-Rv for guix-patches@gnu.org; Sun, 08 Oct 2017 11:12:20 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id aa78635e for ; Sun, 8 Oct 2017 15:12:15 +0000 (UTC) Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 04fe8100 (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Sun, 8 Oct 2017 15:12:14 +0000 (UTC) From: Tobias Geerinckx-Rice Date: Sun, 8 Oct 2017 17:14:19 +0200 Message-Id: <20171008151419.22561-1-me@tobias.gr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 28748@debbugs.gnu.org * gnu/packages/python.scm (python-guzzle-sphinx-theme) (python2-guzzle-sphinx-theme): New variables. --- Guix, This adds a dependency of the new borg@1.1.0. I've included a python2- variant out of habit. Pipe up if this needless frippery offends you. Kind regards, T G-R gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cc7aa8fa4..19d97107e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -16478,3 +16478,27 @@ their files and supports any packaging format (including wheels).") (define-public python2-twine (package-with-python2 python-twine)) + +(define-public python-guzzle-sphinx-theme + (package + (name "python-guzzle-sphinx-theme") + (version "0.7.11") + (source + (origin + (method url-fetch) + (uri (pypi-uri "guzzle_sphinx_theme" version)) + (sha256 + (base32 + "1rnkzrrsbnifn3vsb4pfaia3nlvgvw6ndpxp7lzjrh23qcwid34v")))) + (build-system python-build-system) + (native-inputs + `(("python-sphinx" ,python-sphinx))) + (home-page "https://github.com/guzzle/guzzle_sphinx_theme") + (synopsis "''Guzzle'' Sphinx documentation theme") + (description + "guzzle_sphinx_theme is a theme for the Sphinx documentation system, used +by @uref{http://docs.guzzlephp.org, Guzzle} and several other projects.") + (license license:expat))) + +(define-public python2-guzzle-sphinx-theme + (package-with-python2 python-guzzle-sphinx-theme)) -- 2.13.1