mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: Add python-rapidfuzz.
* gnu/packages/python-xyz.scm (python-rapidfuzz): New variable. Change-Id: I6ff451a1632f586db45fb7079c2dcef7854d5a5c
This commit is contained in:
parent
c7a0088d3f
commit
7fe8e4cfc5
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue