[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69980] [PATCH 10/13] gnu: Add python-ukkonen.
From: |
Vinicius Monego |
Subject: |
[bug#69980] [PATCH 10/13] gnu: Add python-ukkonen. |
Date: |
Sun, 24 Mar 2024 13:40:35 +0000 |
* gnu/packages/python-xyz.scm (python-ukkonen): New variable.
Change-Id: I826b003f1c22e5bf28829d9f2adc5f467d17ed45
---
gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cead8ece1d..03fdccba78 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26691,6 +26691,29 @@ (define-public python-requests-file
library to allow local file system access via @code{file://} URLs.")
(license license:asl2.0)))
+(define-public python-ukkonen
+ (package
+ (name "python-ukkonen")
+ (version "1.0.1")
+ (source
+ (origin
+ ;; There are no tests in the PyPI tarball.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/asottile/ukkonen")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "17gspl2dsykg000275svvyam4k7wz9ypi9xrfrmsgcgryczravlc"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest))
+ (propagated-inputs (list python-cffi))
+ (home-page "https://github.com/asottile/ukkonen")
+ (synopsis "Implementation of bounded Levenshtein distance (Ukkonen)")
+ (description "This package is an implementation of of bounded Levenshtein
+distance (Ukkonen).")
+ (license license:expat)))
+
(define-public python-identify
(package
(name "python-identify")
--
2.39.2
- [bug#69980] [PATCH 00/13] Update and cleanup pre-commit & friends., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 09/13] gnu: python-cfgv: Update to 3.4.0., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 05/13] gnu: python-rich-click: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 07/13] gnu: python-jupytext: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 08/13] gnu: python-omnipath: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 10/13] gnu: Add python-ukkonen.,
Vinicius Monego <=
- [bug#69980] [PATCH 12/13] gnu: python-nodeenv: Update to 1.8.0., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 11/13] gnu: python-identify: Update to 2.5.35., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 01/13] gnu: python-loguru: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 04/13] gnu: python-seaborn: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 13/13] gnu: pre-commit: Update to 3.6.2., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 02/13] gnu: python-jsonargparse: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 03/13] gnu: python-traitlets: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24
- [bug#69980] [PATCH 06/13] gnu: python-lazy-loader: Remove pre-commit from native-inputs., Vinicius Monego, 2024/03/24