guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b74285d78934463ff341ba9e6b0373104930653f
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Oct 26 01:23:40 2025 +0200
gnu: ciri-long: Adapt to python-levenshtein update.
* gnu/packages/bioinformatics.scm (ciri-long)[arguments]
<#:phases>: In phase 'relax-requirements, add python-levenshtein
patch.
Change-Id: If16df4f97f42eaf51c3bd73020c5a7c3d0d01b64
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/bioinformatics.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 1fbc2f9217..013354c456 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4893,7 +4893,10 @@ consensus sequences.")
(("'argparse[^']*',")
"") ;only for python2
(("==")
- ">="))))
+ ">=")
+ ;; This package changed names.
+ (("python-Levenshtein")
+ "levenshtein"))))
(add-before 'build 'build-libssw
(lambda _
(with-directory-excursion "libs/striped_smith_waterman"