diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-19 15:07:23 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:17 +0200 |
commit | 0c2bb63e49c825fa9e34a85ff3d46793cc43da71 (patch) | |
tree | 9e190d23edfdd5cc42f4f2d636e8fbb42f7a0add /gnu/packages/python-xyz.scm | |
parent | 7dfc98b1510e44347b1b046881c2d7485fc60391 (diff) | |
download | guix-0c2bb63e49c825fa9e34a85ff3d46793cc43da71.tar.gz guix-0c2bb63e49c825fa9e34a85ff3d46793cc43da71.zip |
gnu: python-orjson: Fix build.
* gnu/packages/python-xyz.scm (python-orjson)[arguments]: Don't refer
to nonexistent 'prepare-python-module' phase.
Change-Id: I7310eb283e5521ad80e5c07aafeaef3007317e83
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1f354ad9c5..ad765719a8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3811,7 +3811,7 @@ help formatter.") (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))) |