diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-31 08:18:45 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:25 +0200 |
commit | 5676350d871a7945a2dee09b75bca6d28c197822 (patch) | |
tree | 56c657c46495608a8311210acb14dea0055d6c89 /gnu/packages/python-xyz.scm | |
parent | 8088bd760427a89d250163693f9d71ba211c5cf3 (diff) |
gnu: Add python-pybktree.
* gnu/packages/backup.scm (python-pybktree): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4ba16281c3..5f5de3be91 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29219,6 +29219,25 @@ working with iterables.") Python.") (license license:expat))) +(define-public python-pybktree + (package + (name "python-pybktree") + (version "1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pybktree" version)) + (sha256 + (base32 "0asd2lw9c5l5wi4z24k7gkhlprpdkcvs8d94szk56x9xvmy07h7f")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://github.com/Jetsetter/pybktree") + (synopsis "Pythonic BK-tree data structure") + (description + "This package provides a BK-tree data structure to allow fast querying of +close matches in Python.") + (license license:expat))) + (define-public python-pybtex (package (name "python-pybtex") |