From d13d616f04f3907e45430f59bee09e2e599ef17e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Wed, 19 Jun 2024 15:09:05 +0800 Subject: [PATCH] gnu: python-pydantic-core: Fix build. * gnu/packages/python-xyz.scm (python-pydantic-core)[arguments]: Don't refer to nonexistent 'prepare-python-module' phase. Change-Id: I9731ad40472e33d05d8f38d3fc2e5d78d64e12a2 --- gnu/packages/python-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ad765719a8..ac8da44c46 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7988,7 +7988,7 @@ (define-public python-pydantic-core (guix build utils)) #:phases #~(modify-phases %standard-phases - (add-after 'prepare-python-module 'build-python-module + (add-after 'build 'build-python-module (assoc-ref py:%standard-phases 'build)) (add-after 'build-python-module 'install-python-module (assoc-ref py:%standard-phases 'install)))