[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/13: gnu: python-jellyfish: Update to 0.8.8.
From: |
guix-commits |
Subject: |
12/13: gnu: python-jellyfish: Update to 0.8.8. |
Date: |
Sat, 4 Sep 2021 09:07:49 -0400 (EDT) |
lbraun pushed a commit to branch master
in repository guix.
commit 26fe4d77bf4cdbe03bf379f53362ad11394a0cb0
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Fri Sep 3 10:56:20 2021 +0200
gnu: python-jellyfish: Update to 0.8.8.
* gnu/packages/python-xyz.scm (python-jellyfish)[version]: Update to 0.8.8.
[arguments]: Use pytest.
[properties]: Remove python2-variant.
(python2-jellyfish): Remove, unsupported by upstream.
---
gnu/packages/python-xyz.scm | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3bb75bd..830c18d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13807,29 +13807,30 @@ ambiguities (forward vs. backward slashes, etc.).
(define-public python-jellyfish
(package
(name "python-jellyfish")
- (version "0.5.6")
+ (version "0.8.8")
(source (origin
(method url-fetch)
(uri (pypi-uri "jellyfish" version))
(sha256
(base32
- "1j9rplb16ba2prjj6mip46z0w9pnhnqpwgiwi0x93vnas14rlyl8"))))
+ "0p2s6b30sfffx8sya2i8kz0i0riw9fq1fi0k89s8kdgrmjf0h1h5"))))
(build-system python-build-system)
+ (arguments
+ `(#:tests? #f ; XXX: Tests cannot find C coded version.
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "pytest" "-vv" "jellyfish/test.py")))))))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/jamesturk/jellyfish")
(synopsis "Approximate and phonetic matching of strings")
(description "Jellyfish uses a variety of string comparison and phonetic
encoding algorithms to do fuzzy string matching.")
- (license license:bsd-2)
- (properties `((python2-variant . ,(delay python2-jellyfish))))))
-
-(define-public python2-jellyfish
- (let ((jellyfish (package-with-python2
- (strip-python2-variant python-jellyfish))))
- (package/inherit jellyfish
- (native-inputs `(("python2-unicodecsv" ,python2-unicodecsv)
- ,@(package-native-inputs jellyfish))))))
+ (license license:bsd-2)))
(define-public python2-unicodecsv
(package
- branch master updated (1fd0bf6 -> e82b103), guix-commits, 2021/09/04
- 01/13: gnu: python-confuse: Update to 1.5.0., guix-commits, 2021/09/04
- 03/13: gnu: python-mediafile: Update to 0.7.0., guix-commits, 2021/09/04
- 05/13: gnu: beets-bandcamp: Update to 0.1.4., guix-commits, 2021/09/04
- 04/13: gnu: python-discogs-client: Update to 2.3.12., guix-commits, 2021/09/04
- 09/13: gnu: python-mutagen: Update home-page., guix-commits, 2021/09/04
- 12/13: gnu: python-jellyfish: Update to 0.8.8.,
guix-commits <=
- 10/13: gnu: python-musicbrainzngs: Update to 0.7.1., guix-commits, 2021/09/04
- 07/13: gnu: python-pylast: Update to 4.2.1., guix-commits, 2021/09/04
- 13/13: gnu: python-rarfile: Update to 4.0., guix-commits, 2021/09/04
- 08/13: gnu: python-mpd2: Update to 3.0.4., guix-commits, 2021/09/04
- 06/13: gnu: beets: Update to 1.5.0., guix-commits, 2021/09/04
- 11/13: gnu: python-munkres: Update to 1.1.4., guix-commits, 2021/09/04
- 02/13: gnu: python-pyacoustid: Update to 1.2.2., guix-commits, 2021/09/04