guix-commits
[Top][All Lists]
Advanced

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

13/25: gnu: mycli: Placate sanity check.


From: guix-commits
Subject: 13/25: gnu: mycli: Placate sanity check.
Date: Tue, 11 Jan 2022 12:41:20 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit d89e7465d1b9b6a88d8501b6870322580b793659
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Tue Jan 11 00:01:08 2022 +0100

    gnu: mycli: Placate sanity check.
    
    * gnu/packages/databases.scm (mycli)[arguments]: Add phase.
---
 gnu/packages/databases.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 6058e75109..b62a8a0e6b 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -666,7 +666,13 @@ auto-completion and syntax highlighting.")
           (base32 "0rij9nw20zhqr7cqnkm8daw8b1wdc9zb6ny1ji9qz5557nz9i3bl"))))
     (build-system python-build-system)
     (arguments
-     `(#:tests? #f))                    ; tests expect a running MySQL
+     '(#:tests? #f                      ; tests expect a running MySQL
+       #:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'loosen-requirements
+                    (lambda _
+                      ;; Permit newer versions of sqlparse.
+                      (substitute* "setup.py"
+                        (("<0\\.4\\.0") "<0.5.0")))))))
     (propagated-inputs
       (list python-cli-helpers
             python-click



reply via email to

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