guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: python2-sphinxcontrib-websupport: Downgrade to 1.1.2.


From: guix-commits
Subject: 02/04: gnu: python2-sphinxcontrib-websupport: Downgrade to 1.1.2.
Date: Wed, 8 Dec 2021 10:33:09 -0500 (EST)

rekado pushed a commit to branch core-updates-frozen
in repository guix.

commit 68619cad28c10d89de43e6707f31a82190972089
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Dec 8 16:09:02 2021 +0100

    gnu: python2-sphinxcontrib-websupport: Downgrade to 1.1.2.
    
    * gnu/packages/sphinx.scm (python2-sphinxcontrib-websupport): Downgrade to
    1.1.2.
    [arguments]: Override; delete 'sanity-check phase.
    [propagated-inputs]: Override and add python2-six.
    (python-sphinxcontrib-websupport)[properties]: Record python2-variant.
---
 gnu/packages/sphinx.scm | 24 ++++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 5fd63a6..9093baf 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -46,6 +46,7 @@
   #:use-module (gnu packages graphviz)
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
+  #:use-module (gnu packages python)
   #:use-module (gnu packages python-build)
   #:use-module (gnu packages python-crypto)
   #:use-module (gnu packages python-web)
@@ -407,10 +408,29 @@ builder does not support SVG images natively (e.g. 
LaTeX).")
     (description "This package provides a Python API to easily integrate
 Sphinx documentation into your web application.  It provides tools to
 integrate Sphinx documents in web templates and to handle searches.")
-    (license license:bsd-3)))
+    (license license:bsd-3)
+    (properties `((python2-variant . ,(delay 
python2-sphinxcontrib-websupport))))))
 
+;; 1.1.2 is the last version to support Python 2.
 (define-public python2-sphinxcontrib-websupport
-  (package-with-python2 python-sphinxcontrib-websupport))
+  (package
+    (inherit (package-with-python2
+              (strip-python2-variant python-sphinxcontrib-websupport)))
+    (version "1.1.2")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "sphinxcontrib-websupport" version))
+              (sha256
+               (base32
+                "1z7fqra0xm1cdp8vvp80fcvnjlywym7bzz80m0liq7fz1zxvw08m"))))
+    (arguments
+     `(#:tests? #f
+       #:python ,python-2
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'sanity-check))))
+    (propagated-inputs
+     `(("python2-six" ,python2-six)))))
 
 (define-public python-sphinx-gallery
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]