sharlatan pushed a commit to branch master
in repository guix.

commit 5d81b890db37a6f8fdd10721572430638cfb1d2f
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Apr 22 16:00:35 2025 +0200

    gnu: python-commentjson: Switch to python-lark.
    
    * gnu/packages/python-xyz.scm (python-commentjson):
    [arguments]{phases}: Refresh phase 'relax-requirements.
    [propagated-inputs]: Replace python-lark-parser by python-lark.
    
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f75306797c..7d981d589c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17559,7 +17559,7 @@ list format (also known as ASCII plist), written in 
Cython.")
            (lambda _
              (substitute* "setup.py"
                (("lark-parser>=0.7.1,<0.8.0")
-                "lark-parser>=0.7.1"))))
+                "lark"))))
          (add-after 'unpack 'delete-unspported-tests
            ;; Some tests rely on the 'test' module of Python itself,
            ;; which is not available with the Python package in Guix;
@@ -17577,7 +17577,7 @@ list format (also known as ASCII plist), written in 
Cython.")
                            (filter (lambda (f) (grep "from test." f))
                                    test-files)))))))))
     (propagated-inputs
-     (list python-lark-parser))
+     (list python-lark))
     (native-inputs
      (list python-six))
     (home-page "https://github.com/vaidik/commentjson";)

Reply via email to