guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: python2-backports-csv: Remove sanity-check phase.


From: guix-commits
Subject: 02/02: gnu: python2-backports-csv: Remove sanity-check phase.
Date: Wed, 24 Nov 2021 08:20:56 -0500 (EST)

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

commit ff8afea9f7c49039c59301086e49422024205a23
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Nov 24 14:19:45 2021 +0100

    gnu: python2-backports-csv: Remove sanity-check phase.
    
    * gnu/packages/python-xyz.scm (python2-backports-csv)[arguments]: Remove
    'sanity-check phase.
---
 gnu/packages/python-xyz.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5364665..edaca90 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9612,7 +9612,14 @@ Python 2 and Python 3.")
     (license license:psfl)))
 
 (define-public python2-backports-csv
-  (package-with-python2 python-backports-csv))
+  (package
+    (inherit (package-with-python2 python-backports-csv))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; The sanity-check attempts attempts to import the non-existent
+         ;; module "backports".
+         (delete 'sanity-check))))))
 
 (define-public python2-backports-shutil-get-terminal-size
   (package



reply via email to

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