This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch python-team
in repository guix.
The following commit(s) were added to refs/heads/python-team by this push:
new d9a4f76e35 gnu: Fix build of trytond modules.
d9a4f76e35 is described below
commit d9a4f76e3553e946f43a6f87bbd21fc543b8f22c
Author: Hartmut Goebel <[email protected]>
AuthorDate: Fri Jan 30 00:31:20 2026 +0100
gnu: Fix build of trytond modules.
The pyproject-build-system changed the order of phases. Thus prepare-check
must go before sanity-check. To hopefully be more resilient to future
changes, add it relatively to wrap, which comes before sanity-check.
* gnu/packages/tryton.scm (tryton-phases)[prepare-check]: Move after wrap.
Change-Id: I2b4662313e430fa32989d326f862458f5d7c4e49
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/tryton.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index b5e22a1556..d1de08750b 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -198,7 +198,7 @@ filterwarnings =
"Return the phases for building and testing a Tryton module named MODULE.
If present, pass EXTRA-TEST-ARGUMENTS to pytest as well."
#~(modify-phases %standard-phases
- (add-before 'check 'prepare-check
+ (add-after 'wrap 'prepare-check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(setenv "DB_NAME" ":memory:")