guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 4e5b7a6d956d0a836d5559d16b6e344415655afd
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Sep 13 17:07:30 2025 +0200
gnu: python-pyzstd: Migrate to (json).
* gnu/packages/python-compression.scm (python-pyzstd)[arguments]
<#:configure-flags>: Migrate syntax to (json).
Change-Id: I4da32b265c2a2f529b357e5bed1ad41e72b5cce7
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-compression.scm | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/gnu/packages/python-compression.scm
b/gnu/packages/python-compression.scm
index 3c1713f6f6..62e17ea544 100644
--- a/gnu/packages/python-compression.scm
+++ b/gnu/packages/python-compression.scm
@@ -1073,10 +1073,8 @@ provided.")
(build-system pyproject-build-system)
(arguments
(list
- ;; XXX: This is ugly. TODO python-team:
- ;; Migrate pyproject to (json) instead of (guix build json).
#:configure-flags
- #~`(@ . (("--build-option" . "--dynamic-link-zstd")))))
+ #~'(("--build-option" . "--dynamic-link-zstd"))))
(inputs (list `(,zstd "lib")))
(native-inputs (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/Rogdham/pyzstd")