summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-04-22 16:00:29 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-04-24 04:53:41 +0100
commit6c134ae2792d786e08d3653eeed7e9717be01a17 (patch)
treec2c8029868c867c1be7e2f8be2f1ba4098bf6fca /gnu/packages/python-web.scm
parentdbc331397e6c26738f2b6e28f68716c952797e70 (diff)
gnu: python-suds: Fix dist-info.
* gnu/packages/python-web.scm (python-suds) [arguments]{phases}: Add phase 'add-custom-dist-info. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm16
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index ef5cd127df9..42904605e5c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10620,6 +10620,22 @@ and FastAPI.")
10620 (sha256 10620 (sha256
10621 (base32 "1byyg7b2ixpr8hc849a6dd0qn5daxqawz6lb3php8lrmsb1n5cc3")))) 10621 (base32 "1byyg7b2ixpr8hc849a6dd0qn5daxqawz6lb3php8lrmsb1n5cc3"))))
10622 (build-system pyproject-build-system) 10622 (build-system pyproject-build-system)
10623 (arguments
10624 (list #:phases
10625 #~(modify-phases %standard-phases
10626 ;; XXX: chirp expects suds instead of suds_community
10627 (add-after 'install 'add-custom-dist-info
10628 (lambda _
10629 (for-each
10630 (lambda (dir)
10631 (with-directory-excursion (dirname dir)
10632 (symlink
10633 (basename dir)
10634 (string-append "suds-" #$version ".dist-info"))))
10635 (find-files #$output
10636 (lambda (file stat)
10637 (string-suffix? ".dist-info" file))
10638 #:directories? #t)))))))
10623 (native-inputs 10639 (native-inputs
10624 (list python-pytest 10640 (list python-pytest
10625 python-setuptools 10641 python-setuptools