gnu: Add python-rapidfuzz.

* gnu/packages/python-xyz.scm (python-rapidfuzz): New variable.

Change-Id: I6ff451a1632f586db45fb7079c2dcef7854d5a5c
This commit is contained in:
Ricardo Wurmus 2024-02-27 19:41:47 +01:00 committed by Sharlatan Hellseher
parent c7a0088d3f
commit 7fe8e4cfc5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2413,6 +2413,28 @@ (define-public python-d2to1
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")