gnu: python-zope-i18nmessageid: Update to 7.0.

* gnu/packages/python-web.scm (python-zope-i18nmessageid): Update to 7.0.
[source]: Switch to git-fetch.
[arguments]<#:phases>: Replace 'check phase.
[native-inputs]: Remove python-coverage, python-wheel.
[home-page]: Replace with the readthedocs link.

Change-Id: I27bcd2411b3fbd5c486dcd85acdd252cde359203
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-09-20 23:27:58 +02:00 committed by Sharlatan Hellseher
parent 6619750a8c
commit 9e296985f4
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -4649,20 +4649,28 @@ servers, regular expressions, and more.")
(define-public python-zope-i18nmessageid (define-public python-zope-i18nmessageid
(package (package
(name "python-zope-i18nmessageid") (name "python-zope-i18nmessageid")
(version "5.1.1") (version "7.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (pypi-uri "zope.i18nmessageid" version)) (uri (git-reference
(url "https://github.com/zopefoundation/zope.i18nmessageid")
(commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 "14mx62khys82p2gmmf3m40x4jmvcz3rndvl6qik2n2qfp13n7ds7")))) (base32 "192ixj8r9n467avbxrmhakmqiaflc1vw37k08z096ajcjgbfrm5d"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
(native-inputs (arguments
(list python-coverage python-setuptools (list
python-wheel python-zope-testrunner)) #:phases
(propagated-inputs #~(modify-phases %standard-phases
(list python-six)) (replace 'check
(home-page "https://pypi.org/project/zope.i18nmessageid/") (lambda* (#:key tests? #:allow-other-keys)
(if tests?
(invoke "zope-testrunner" "--test-path=src")
(format #t "test suite not run~%")))))))
(native-inputs (list python-setuptools python-zope-testrunner))
(home-page "https://zopei18nmessageid.readthedocs.io")
(synopsis "Message identifiers for internationalization") (synopsis "Message identifiers for internationalization")
(description "Zope.i18nmessageid provides facilities for declaring (description "Zope.i18nmessageid provides facilities for declaring
internationalized messages within program source text.") internationalized messages within program source text.")