[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69980] [PATCH python-team v3 09/14] gnu: Add python-ukkonen.
From: |
Nicolas Graves |
Subject: |
[bug#69980] [PATCH python-team v3 09/14] gnu: Add python-ukkonen. |
Date: |
Sat, 1 Jun 2024 16:57:57 +0200 |
From: Vinicius Monego <monego@posteo.net>
* 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 82a29f6a9b6..cfff41569e1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27569,6 +27569,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.41.0
- [bug#69980] [PATCH python-team v3 00/14] Update pre-commit and remove dependents, Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 01/14] gnu: python-jsonargparse: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 02/14] gnu: python-traitlets: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 03/14] gnu: python-rich-click: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 04/14] gnu: python-lazy-loader: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 05/14] gnu: python-omnipath: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 06/14] gnu: python-jupytext: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 07/14] gnu: python-seaborn: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 08/14] gnu: python-cfgv: Update to 3.4.0., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 09/14] gnu: Add python-ukkonen.,
Nicolas Graves <=
- [bug#69980] [PATCH python-team v3 11/14] gnu: python-nodeenv: Update to 1.8.0., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 10/14] gnu: python-identify: Update to 2.5.36., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 12/14] gnu: pre-commit: Update to 3.7.1., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 13/14] gnu: python-jupytext: Move to pyproject-build-system., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 14/14] gnu: jupytext: Fix pre-commit native-input removal., Nicolas Graves, 2024/06/01