diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-24 23:30:36 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:37:03 +0100 |
| commit | f9fc9c1d4eb001b93e051fac965255950e31a525 (patch) | |
| tree | 0e1acfb6179b0c57507c959fba235f224a6264bc /gnu/packages/python-xyz.scm | |
| parent | 53aa7a15853ee1b25f5ba21ef10b7e73c9cda6b6 (diff) | |
gnu: python-pyxdameraulevenshtein: Run and fix tests.
* gnu/packages/python-xyz.scm (python-pyxdameraulevenshtein)
[source]: Switch to git-fetch.
[native-inputs]: Add python-pytest, remove python-wheel.
Change-Id: I5835d0367438a3f3cc017b1dc37fd5d6f2f3c120
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 249d5e733a..6dd53151c9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1300,15 +1300,15 @@ of VT100 terminal.") (version "1.8.0") (source (origin - (method url-fetch) - (uri (pypi-uri "pyxdameraulevenshtein" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/lanl/pyxDamerauLevenshtein") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "07nhds44ry9mchqjqjdnq2asp13y9pqc8003pkydvb3dah7wrvhv")))) + (base32 "1qmmpgf8qxv5pfnqp328qqsj34jvyc63w8659xx18d8405agcjdr")))) (build-system pyproject-build-system) - (native-inputs - (list python-cython - python-setuptools - python-wheel)) + (native-inputs (list python-cython python-pytest python-setuptools)) (home-page "https://github.com/lanl/pyxDamerauLevenshtein") (synopsis "Damerau-Levenshtein edit distance algorithm") (description |
