[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#77895] [PATCH 2/7] gnu: python-suds: Fix dist-info.
From: |
Nicolas Graves |
Subject: |
[bug#77895] [PATCH 2/7] gnu: python-suds: Fix dist-info. |
Date: |
Fri, 18 Apr 2025 13:46:20 +0200 |
* gnu/packages/python-web.scm (python-suds)
[arguments]{phases}: Add phase 'add-custom-dist-info.
---
gnu/packages/python-web.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index e05ac25563..722568fee6 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10592,6 +10592,22 @@ (define-public python-suds
(sha256
(base32 "1byyg7b2ixpr8hc849a6dd0qn5daxqawz6lb3php8lrmsb1n5cc3"))))
(build-system pyproject-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ ;; XXX: chirp expects suds instead of suds_community
+ (add-after 'install 'add-custom-dist-info
+ (lambda _
+ (for-each
+ (lambda (dir)
+ (with-directory-excursion (dirname dir)
+ (symlink
+ (basename dir)
+ (string-append "suds-" #$version ".dist-info"))))
+ (find-files #$output
+ (lambda (file stat)
+ (string-suffix? ".dist-info" file))
+ #:directories? #t)))))))
(native-inputs
(list python-pytest
python-setuptools
--
2.49.0
- [bug#77895] [PATCH python-team 0/7] Some fixes., Nicolas Graves, 2025/04/18
- [bug#77895] [PATCH 1/7] gnu: Add python-lark., Nicolas Graves, 2025/04/18
- [bug#77895] [PATCH 3/7] gnu: chirp: Update to 0.4.0-4.bc27f66., Nicolas Graves, 2025/04/18
- [bug#77895] [PATCH 2/7] gnu: python-suds: Fix dist-info.,
Nicolas Graves <=
- [bug#77895] [PATCH 6/7] gnu: python-bed-reader: Improve phases' style., Nicolas Graves, 2025/04/18
- [bug#77895] [PATCH 7/7] gnu: gitless: Fix build and disable failing tests., Nicolas Graves, 2025/04/18
- [bug#77895] [PATCH 5/7] gnu: python-skranger: Improve phase 'build-extensions., Nicolas Graves, 2025/04/18
- [bug#77895] [PATCH 4/7] gnu: Remove python-mox3., Nicolas Graves, 2025/04/18
- [bug#77895] [PATCH python-team 0/7] Some fixes., Sharlatan Hellseher, 2025/04/21
- [bug#77895] [PATCH v2 01/10] gnu: Add python-lark., Nicolas Graves, 2025/04/22