guix-commits
[Top][All Lists]
Advanced

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

04/21: gnu: python-soupsieve: Fix building.


From: guix-commits
Subject: 04/21: gnu: python-soupsieve: Fix building.
Date: Mon, 9 Aug 2021 08:29:04 -0400 (EDT)

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

commit 3fe23854eb2193f5119f4199b887f94d2d36fc72
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Aug 9 12:14:16 2021 +0300

    gnu: python-soupsieve: Fix building.
    
    * gnu/packages/python-xyz.scm (python-soupsieve)[arguments]: Skip sanity
    check. Convert to gexp.
---
 gnu/packages/python-xyz.scm | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d710ec9..611451e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -218,6 +218,7 @@
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix hg-download)
+  #:use-module (guix gexp)
   #:use-module (guix utils)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system cmake)
@@ -8475,10 +8476,15 @@ converts incoming documents to Unicode and outgoing 
documents to UTF-8.")
         (base32
          "1k70gpn2d3vgdyxbdy536dgm4kchcraxz6lmgsfg3324iy2789q5"))))
     (build-system python-build-system)
-    (arguments `(#:tests? #f))
-    ;;XXX: 2 tests fail currently despite claming they were to be
-    ;;skipped. Also, beautifulsoup4 may depend on this in the future, so we
-    ;;don't want to create a circular dependency.
+    (arguments
+      ;;XXX: 2 tests fail currently despite claming they were to be
+      ;;skipped. Also, beautifulsoup4 may depend on this in the future, so we
+      ;;don't want to create a circular dependency.
+      (list #:tests? #f
+            #:phases
+            #~(modify-phases %standard-phases
+                ;; Circular dependency with python-beautifulsoup4.
+                (delete 'sanity-check))))
     (home-page "https://github.com/facelessuser/soupsieve";)
     (synopsis "CSS selector library")
     (description



reply via email to

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