[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69980] [PATCH python-team v3 10/14] gnu: python-identify: Update to
From: |
Nicolas Graves |
Subject: |
[bug#69980] [PATCH python-team v3 10/14] gnu: python-identify: Update to 2.5.36. |
Date: |
Sat, 1 Jun 2024 16:57:58 +0200 |
From: Vinicius Monego <monego@posteo.net>
* gnu/packages/python-xyz.scm (python-identify): Update to 2.5.36.
[build-system]: Use pyproject-build-system.
[arguments]: Use G-Expressions. Do not override the check phase.
[native-inputs]: Add python-ukkonen.
Change-Id: I970507dc358029b4e2cc0a295d19db4b28202544
---
gnu/packages/python-xyz.scm | 21 +++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cfff41569e1..53762b111f3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27595,7 +27595,7 @@ (define-public python-ukkonen
(define-public python-identify
(package
(name "python-identify")
- (version "1.4.25")
+ (version "2.5.36")
(source
(origin
;; There are no tests in the PyPI tarball.
@@ -27605,19 +27605,16 @@ (define-public python-identify
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1fqgci6skckcq0x5pnxh6k2qjzn1ndsrgha1j6wwv1ld4g9bd3hz"))))
- (build-system python-build-system)
+ (base32 "1il0d1zh31jx36m0lvhpiykx95i95dcfrgrfbz2x6la884zsmvq8"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- ;; system-error "utime" "~A" ("No such file or directory")
- (delete 'ensure-no-mtimes-pre-1980)
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
+ (list
+ #:phases #~(modify-phases %standard-phases
+ ;; system-error "utime" "~A" ("No such file or directory")
+ (delete 'ensure-no-mtimes-pre-1980))))
(native-inputs
- (list python-coverage python-pytest python-setuptools python-wheel))
+ (list python-coverage python-pytest python-setuptools
+ python-ukkonen python-wheel))
(propagated-inputs
(list python-editdistance))
(home-page "https://github.com/chriskuehl/identify")
--
2.41.0
- [bug#69980] [PATCH python-team v3 01/14] gnu: python-jsonargparse: Remove pre-commit from native-inputs., (continued)
- [bug#69980] [PATCH python-team v3 01/14] gnu: python-jsonargparse: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 02/14] gnu: python-traitlets: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 03/14] gnu: python-rich-click: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 04/14] gnu: python-lazy-loader: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 05/14] gnu: python-omnipath: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 06/14] gnu: python-jupytext: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 07/14] gnu: python-seaborn: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 08/14] gnu: python-cfgv: Update to 3.4.0., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 09/14] gnu: Add python-ukkonen., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 11/14] gnu: python-nodeenv: Update to 1.8.0., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 10/14] gnu: python-identify: Update to 2.5.36.,
Nicolas Graves <=
- [bug#69980] [PATCH python-team v3 12/14] gnu: pre-commit: Update to 3.7.1., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 13/14] gnu: python-jupytext: Move to pyproject-build-system., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 14/14] gnu: jupytext: Fix pre-commit native-input removal., Nicolas Graves, 2024/06/01