guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add python-rapidfuzz.


From: guix-commits
Subject: 01/05: gnu: Add python-rapidfuzz.
Date: Tue, 27 Feb 2024 15:56:54 -0500 (EST)

rekado pushed a commit to branch python-team
in repository guix.

commit 10a400d70751510d4d3a40618675960f97bf6bed
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 27 19:41:47 2024 +0100

    gnu: Add python-rapidfuzz.
    
    * gnu/packages/python-xyz.scm (python-rapidfuzz): New variable.
    
    Change-Id: I6ff451a1632f586db45fb7079c2dcef7854d5a5c
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 80c6773136..2120cf8c25 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2046,6 +2046,28 @@ using distutils2-like setup.cfg files for a package's 
metadata with a
 distribute/setuptools setup.py script.")
     (license license:bsd-2)))
 
+(define-public python-rapidfuzz
+  (package
+    (name "python-rapidfuzz")
+    (version "3.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "rapidfuzz" version))
+       (sha256
+        (base32 "1rrx043zqqql31pcp92k61digibymp3l382gaxr4h8717kp0nrim"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-packaging
+           python-pytest
+           python-scikit-build
+           python-setuptools))
+    (home-page "https://github.com/rapidfuzz/RapidFuzz";)
+    (synopsis "Rapid fuzzy string matching")
+    (description "RapidFuzz is a fast string matching library for Python and
+C++, which is using the string similarity calculations from FuzzyWuzzy.")
+    (license license:expat)))
+
 (define-public python-rawkit
   (package
     (name "python-rawkit")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]