summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-04-22 16:00:35 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-04-24 04:53:41 +0100
commit5d81b890db37a6f8fdd10721572430638cfb1d2f (patch)
tree1306045bdbb7be23430112e05ed9f0f09f3be317 /gnu
parent3df0c87530651cfde6db50fc716b5022ec4b4305 (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f75306797c8..7d981d589c7 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.")
17559 (lambda _ 17559 (lambda _
17560 (substitute* "setup.py" 17560 (substitute* "setup.py"
17561 (("lark-parser>=0.7.1,<0.8.0") 17561 (("lark-parser>=0.7.1,<0.8.0")
17562 "lark-parser>=0.7.1")))) 17562 "lark"))))
17563 (add-after 'unpack 'delete-unspported-tests 17563 (add-after 'unpack 'delete-unspported-tests
17564 ;; Some tests rely on the 'test' module of Python itself, 17564 ;; Some tests rely on the 'test' module of Python itself,
17565 ;; which is not available with the Python package in Guix; 17565 ;; which is not available with the Python package in Guix;
@@ -17577,7 +17577,7 @@ list format (also known as ASCII plist), written in Cython.")
17577 (filter (lambda (f) (grep "from test." f)) 17577 (filter (lambda (f) (grep "from test." f))
17578 test-files))))))))) 17578 test-files)))))))))
17579 (propagated-inputs 17579 (propagated-inputs
17580 (list python-lark-parser)) 17580 (list python-lark))
17581 (native-inputs 17581 (native-inputs
17582 (list python-six)) 17582 (list python-six))
17583 (home-page "https://github.com/vaidik/commentjson") 17583 (home-page "https://github.com/vaidik/commentjson")