emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#39604: closed ([PATCH] gnu: Add python-fuzzywuzzy.)


From: GNU bug Tracking System
Subject: bug#39604: closed ([PATCH] gnu: Add python-fuzzywuzzy.)
Date: Fri, 14 Feb 2020 22:41:01 +0000

Your message dated Fri, 14 Feb 2020 23:41:17 +0100
with message-id <20200214224117.fsxcwlmfnxz4wdka@gravity>
and subject line Re: [PATCH] gnu: Add python-fuzzywuzzy.
has caused the debbugs.gnu.org bug report #39604,
regarding [PATCH] gnu: Add python-fuzzywuzzy.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39604: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39604
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-fuzzywuzzy. Date: Fri, 14 Feb 2020 13:53:23 -0500
* gnu/packages/python-xyz.scm (python-fuzzywuzzy, python2-fuzzywuzzy):
  New variables.
---
 gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ca559ca00a..aeea4df12a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -69,6 +69,7 @@
 ;;; Copyright © 2019 Tanguy Le Carrour <address@hidden>
 ;;; Copyright © 2019 Mădălin Ionel Patrașcu <address@hidden>
 ;;; Copyright © 2020 Jakub Kądziołka <address@hidden>
+;;; Copyright © 2020 sirgazil <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -17541,3 +17542,31 @@ extensive support of PNG features.  It can also read 
and write Netpbm PAM
 files, with a focus on its use as an intermediate format for implementing
 custom PNG processing.")
     (license license:expat)))
+
+(define-public python-fuzzywuzzy
+  (package
+    (name "python-fuzzywuzzy")
+    (version "0.18.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "fuzzywuzzy" version))
+       (sha256
+        (base32
+         "1s00zn75y2dkxgnbw8kl8dw4p1mc77cv78fwfa4yb0274s96w0a5"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-hypothesis" ,python-hypothesis)
+       ("python-pycodestyle" ,python-pycodestyle)
+       ("python-pytest" ,python-pytest)))
+    (propagated-inputs
+     `(("python-levenshtein" ,python-levenshtein)))
+    (home-page "https://github.com/seatgeek/fuzzywuzzy";)
+    (synopsis "Fuzzy string matching in python")
+    (description "Approximate string matching using
+@emph{Levenshtein Distance} to calculate the differences between
+sequences.")
+    (license license:gpl2)))
+
+(define-public python2-fuzzywuzzy
+  (package-with-python2 python-fuzzywuzzy))
-- 
2.25.0





--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: Add python-fuzzywuzzy. Date: Fri, 14 Feb 2020 23:41:17 +0100
On Fri, Feb 14, 2020 at 01:53:23PM -0500, sirgazil wrote:
> * gnu/packages/python-xyz.scm (python-fuzzywuzzy, python2-fuzzywuzzy):
>   New variables.
> ---
>  gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
>  1 file changed, 29 insertions(+)
> 
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index ca559ca00a..aeea4df12a 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -69,6 +69,7 @@
>  ;;; Copyright © 2019 Tanguy Le Carrour <address@hidden>
>  ;;; Copyright © 2019 Mădălin Ionel Patrașcu <address@hidden>
>  ;;; Copyright © 2020 Jakub Kądziołka <address@hidden>
> +;;; Copyright © 2020 sirgazil <address@hidden>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -17541,3 +17542,31 @@ extensive support of PNG features.  It can also read 
> and write Netpbm PAM
>  files, with a focus on its use as an intermediate format for implementing
>  custom PNG processing.")
>      (license license:expat)))
> +
> +(define-public python-fuzzywuzzy
> +  (package
> +    (name "python-fuzzywuzzy")
> +    (version "0.18.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (pypi-uri "fuzzywuzzy" version))
> +       (sha256
> +        (base32
> +         "1s00zn75y2dkxgnbw8kl8dw4p1mc77cv78fwfa4yb0274s96w0a5"))))
> +    (build-system python-build-system)
> +    (native-inputs
> +     `(("python-hypothesis" ,python-hypothesis)
> +       ("python-pycodestyle" ,python-pycodestyle)
> +       ("python-pytest" ,python-pytest)))
> +    (propagated-inputs
> +     `(("python-levenshtein" ,python-levenshtein)))
> +    (home-page "https://github.com/seatgeek/fuzzywuzzy";)
> +    (synopsis "Fuzzy string matching in python")
This should be "Python" with a capital P. Apart from that, LGTM - pushed
as da8ca4c3fc2ac36977e3190bb05802c487619e8c.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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