sharlatan pushed a commit to branch python-team
in repository guix.
commit 866e0cd46310a4a4ceba25a692ffd75e22a3e42d
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Mar 31 08:18:45 2025 +0200
gnu: Add python-pybktree.
* gnu/packages/backup.scm (python-pybktree): New variable.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1f42026027..c6d4ce2d6f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29153,6 +29153,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")