mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-zope-configuration: Update to 7.0.
* gnu/packages/python-web.scm (python-zope-configuration): Update to 7.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:phases>: Replace 'check phase. [native-inputs]: Add python-setuptools. [home-page]: Use readthedocs link. Change-Id: I7c3e3cc76abd85f45f4999f2a144390906ed8eb5 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
5cff895ecd
commit
deb5941550
1 changed files with 25 additions and 14 deletions
|
@ -4748,20 +4748,31 @@ configure engines.")
|
||||||
(define-public python-zope-configuration
|
(define-public python-zope-configuration
|
||||||
(package
|
(package
|
||||||
(name "python-zope-configuration")
|
(name "python-zope-configuration")
|
||||||
(version "4.4.0")
|
(version "7.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "zope.configuration" version))
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/zopefoundation/zope.configuration")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "11lr6z3jpz9835a1if89g3x7k31sviq2d0xvvic5xi4c980dbkhv"))))
|
||||||
"0g6vrl7y27z9cj5xyrww9xlzk4npj55mgmlrcd9d2nj08jn2pw79"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
(arguments
|
||||||
(native-inputs
|
(list
|
||||||
(list python-manuel python-zope-testing python-zope-testrunner))
|
#:phases
|
||||||
(propagated-inputs
|
#~(modify-phases %standard-phases
|
||||||
(list python-zope-i18nmessageid python-zope-interface
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(if tests?
|
||||||
|
(invoke "zope-testrunner" "--test-path=src")
|
||||||
|
(format #t "test suite not run~%")))))))
|
||||||
|
(native-inputs (list python-manuel python-setuptools python-zope-testing
|
||||||
|
python-zope-testrunner))
|
||||||
|
(propagated-inputs (list python-zope-i18nmessageid python-zope-interface
|
||||||
python-zope-schema))
|
python-zope-schema))
|
||||||
(home-page "https://pypi.org/project/zope.configuration/")
|
(home-page "https://zopeconfiguration.readthedocs.io")
|
||||||
(synopsis "Zope Configuration Markup Language")
|
(synopsis "Zope Configuration Markup Language")
|
||||||
(description "Zope.configuration implements ZCML, the Zope Configuration
|
(description "Zope.configuration implements ZCML, the Zope Configuration
|
||||||
Markup Language.")
|
Markup Language.")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue