guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 082aaf2dd0914908d909d980438f7cb8d11428fb
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Sep 13 16:58:10 2025 +0200
gnu: python-libcst: Extend with (pyproject-guile-json).
* gnu/packages/python-xyz.scm (python-libcst)[arguments]
<#:phases>: Extend with (pyproject-guile-json).
Change-Id: I4301b1ce3054497a6d4cf1660987605398070d88
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 11c6656ba7..b7f417ca30 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22213,6 +22213,7 @@ members = [
((guix build pyproject-build-system) #:prefix py:)
(guix build utils))
#:phases
+ (with-extensions (list (pyproject-guile-json))
#~(modify-phases %standard-phases
(add-after 'unpack 'prepare-source
(lambda _
@@ -22231,13 +22232,13 @@ members = [
;; We are not the only ones who cannot load libcst.native
;; during the 'check phase
;; https://github.com/Instagram/LibCST/issues/1176
- ;(add-after 'wrap 'python-check
- ; (lambda args
- ; (apply (assoc-ref py:%standard-phases 'check)
- ; #:test-flags '()
- ; args)))
+ ;; (add-after 'wrap 'python-check
+ ;; (lambda args
+ ;; (apply (assoc-ref py:%standard-phases 'check)
+ ;; #:test-flags '()
+ ;; args)))
(replace 'install
- (assoc-ref py:%standard-phases 'install)))))
+ (assoc-ref py:%standard-phases 'install))))))
(native-inputs
(list python-minimal-wrapper
python-hypothesmith