summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-15 22:45:35 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:30 +0100
commit52b4aac17763ada8e8d705d8fb795ecd34b0c976 (patch)
tree89eec366efe474e20f57cf76d59acf210c8b5263 /gnu
parentc486a1d3f6b23a9d5f72dfb49bdecc1db5f8df79 (diff)
gnu: Remove python-editdistance.
This project was archived by the owner on Jun 30, 2025. It has no users in Guix. * gnu/packages/textutils.scm (python-editdistance): Delete variable. Change-Id: Ic8930d36449499874837f106ec1e6404ef349218
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/textutils.scm37
1 files changed, 0 insertions, 37 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index cb983fef43e..fdfd8ea6050 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -1058,43 +1058,6 @@ Eclipse and NetBeans. Completion information is typically specified in an XML
file, but can even be dynamic.")
(license license:bsd-3)))
-;; We use the sources from git instead of the tarball from pypi, because the
-;; latter does not include the Cython source file from which bycython.cpp is
-;; generated.
-(define-public python-editdistance
- (let ((commit "3ea84a7dd3258c76aa3be851ef3d50e59c886846")
- (revision "1"))
- (package
- (name "python-editdistance")
- (version (string-append "0.3.1-" revision "." (string-take commit 7)))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/aflc/editdistance")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1l43svsv12crvzphrgi6x435z6xg8m086c64armp8wzb4l8ccm7g"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'build-cython-code
- (lambda _
- (with-directory-excursion "editdistance"
- (delete-file "bycython.cpp")
- (invoke "cython" "--cplus" "bycython.pyx")))))))
- (native-inputs
- (list python-cython))
- (home-page "https://www.github.com/aflc/editdistance")
- (synopsis "Fast implementation of the edit distance (Levenshtein distance)")
- (description
- "This library simply implements Levenshtein distance algorithm with C++
-and Cython.")
- (license license:expat))))
-
(define-public txt2tags
(package
(name "txt2tags")