[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/21: gnu: python-zope-schema: Update to 6.0.0.
From: |
guix-commits |
Subject: |
12/21: gnu: python-zope-schema: Update to 6.0.0. |
Date: |
Mon, 20 Jul 2020 11:00:43 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 9c2e6516622d19ca2e484e2c168a1f94f2c96f76
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jul 20 17:37:55 2020 +0300
gnu: python-zope-schema: Update to 6.0.0.
* gnu/packages/python-web.scm (python-zope-schema): Update to 6.0.0.
[arguments]: Don't skip tests. Use custom 'check phase.
---
gnu/packages/python-web.scm | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 02bd3fe..8a21895 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1240,17 +1240,24 @@ internationalized messages within program source text.")
(define-public python-zope-schema
(package
(name "python-zope-schema")
- (version "5.0.1")
+ (version "6.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "zope.schema" version))
(sha256
(base32
- "0q93j0x52a42khw12al90jw2bk0wly3jwghql3a25zpwwxvn24ya"))))
+ "09jg47bxhfg1ahr1jxb5y0cbiszyk1j6fn1r1r7s6svjl3lbryr0"))))
(build-system python-build-system)
(arguments
- '(#:tests? #f)) ; FIXME: Tests can't find zope.event.
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (add-installed-pythonpath inputs outputs)
+ (if tests?
+ (invoke "zope-testrunner" "--test-path=src")
+ #t))))))
(propagated-inputs
`(("python-zope-event" ,python-zope-event)
("python-zope-interface" ,python-zope-interface)))
- 05/21: gnu: Add python-zope-testrunner-bootstrap., (continued)
- 05/21: gnu: Add python-zope-testrunner-bootstrap., guix-commits, 2020/07/20
- 08/21: gnu: Add python-zope-security-bootstrap., guix-commits, 2020/07/20
- 07/21: gnu: Add python-zope-proxy-bootstrap., guix-commits, 2020/07/20
- 11/21: gnu: python-zope-interface: Update to 5.1.0., guix-commits, 2020/07/20
- 16/21: gnu: Add python-btrees., guix-commits, 2020/07/20
- 20/21: gnu: Adsd python-transaction., guix-commits, 2020/07/20
- 10/21: gnu: python-zope-proxy: Update to 4.3.5., guix-commits, 2020/07/20
- 15/21: gnu: Add python-persistent., guix-commits, 2020/07/20
- 18/21: gnu: Add python-zope-configuration-bootstrap., guix-commits, 2020/07/20
- 04/21: gnu: Add python-zope-exceptions-bootstrap., guix-commits, 2020/07/20
- 12/21: gnu: python-zope-schema: Update to 6.0.0.,
guix-commits <=
- 14/21: gnu: python-zope-configuration: Update to 4.4.0., guix-commits, 2020/07/20
- 19/21: gnu: Add python-zope-location-bootstrap., guix-commits, 2020/07/20
- 21/21: gnu: python-zope-security: Update to 5.1.1., guix-commits, 2020/07/20
- 09/21: gnu: python-zope-proxy: Run the tests., guix-commits, 2020/07/20
- 13/21: gnu: Add python-manuel., guix-commits, 2020/07/20
- 17/21: gnu: Add python-zope-component-bootstrap., guix-commits, 2020/07/20