diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 22:53:59 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-25 12:50:56 +0100 |
| commit | 115b05af2aefe11b1c73fbeca31b92a4c1ea64ca (patch) | |
| tree | cfee7852849dd3382872082278fcca62683212be /gnu | |
| parent | dc8187ba0f0757de3c7db01bf8d5d7a6dd0edee7 (diff) | |
gnu: python-zodb: Update to 6.0.1.
* gnu/packages/python-web.scm (python-zodb): Update to 6.0.1.
[propagated-inputs]: Remove python-six.
[native-inputs]: Add python-wheel.
Change-Id: Ieca05b7b3b17baba2aa262c71d2af6de3ea2708a
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-web.scm | 57 |
1 files changed, 31 insertions, 26 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 42904605e5c..4eee5b9edc4 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm | |||
| @@ -3896,38 +3896,43 @@ configuration-intensive applications.") | |||
| 3896 | (define-public python-zodb | 3896 | (define-public python-zodb |
| 3897 | (package | 3897 | (package |
| 3898 | (name "python-zodb") | 3898 | (name "python-zodb") |
| 3899 | (version "5.8.1") | 3899 | (version "6.0.1") |
| 3900 | (source | 3900 | (source |
| 3901 | (origin | 3901 | (origin |
| 3902 | (method url-fetch) | 3902 | (method url-fetch) |
| 3903 | (uri (pypi-uri "ZODB" version)) | 3903 | (uri (pypi-uri "zodb" version)) |
| 3904 | (sha256 | 3904 | (sha256 |
| 3905 | (base32 "1pv4w8mnx6j4xvkcjbkh99pv8ljby7g9f7zjq7zhdmk06sykmiy6")))) | 3905 | (base32 "02cmvf8j2nin5z26wvy2vq2k9mj12hqrr4276lj3w4jj32p0zxw9")))) |
| 3906 | (build-system pyproject-build-system) | 3906 | (build-system pyproject-build-system) |
| 3907 | (arguments | 3907 | (arguments |
| 3908 | '(#:phases (modify-phases %standard-phases | 3908 | (list |
| 3909 | (replace 'check | 3909 | #:phases |
| 3910 | (lambda* (#:key tests? #:allow-other-keys) | 3910 | #~(modify-phases %standard-phases |
| 3911 | (if tests? | 3911 | (replace 'check |
| 3912 | (begin | 3912 | (lambda* (#:key tests? #:allow-other-keys) |
| 3913 | ;; This test does not work after installing the | 3913 | (if tests? |
| 3914 | ;; package, since it expects the ZODB source code | 3914 | (begin |
| 3915 | ;; to reside in the src/ directory. | 3915 | ;; This test does not work after installing the |
| 3916 | (delete-file-recursively | 3916 | ;; package, since it expects the ZODB source code |
| 3917 | "src/ZODB/tests/testdocumentation.py") | 3917 | ;; to reside in the src/ directory. |
| 3918 | (invoke "zope-testrunner" "-vv" "--test-path=src" | 3918 | (delete-file-recursively |
| 3919 | "--all")) | 3919 | "src/ZODB/tests/testdocumentation.py") |
| 3920 | (format #t "test suite not run~%"))))))) | 3920 | (invoke "zope-testrunner" "-vv" "--test-path=src" |
| 3921 | (propagated-inputs (list python-btrees | 3921 | "--all")) |
| 3922 | python-persistent | 3922 | (format #t "test suite not run~%"))))))) |
| 3923 | python-zconfig | 3923 | (native-inputs |
| 3924 | python-six | 3924 | (list python-manuel |
| 3925 | python-transaction | 3925 | python-wheel |
| 3926 | python-zc-lockfile | 3926 | python-zope-testing |
| 3927 | python-zodbpickle | 3927 | python-zope-testrunner)) |
| 3928 | python-zope-interface)) | 3928 | (propagated-inputs |
| 3929 | (native-inputs (list python-manuel python-zope-testing | 3929 | (list python-btrees |
| 3930 | python-zope-testrunner)) | 3930 | python-persistent |
| 3931 | python-transaction | ||
| 3932 | python-zc-lockfile | ||
| 3933 | python-zconfig | ||
| 3934 | python-zodbpickle | ||
| 3935 | python-zope-interface)) | ||
| 3931 | (home-page "http://zodb-docs.readthedocs.io") | 3936 | (home-page "http://zodb-docs.readthedocs.io") |
| 3932 | (synopsis "Object-oriented database for Python") | 3937 | (synopsis "Object-oriented database for Python") |
| 3933 | (description | 3938 | (description |
