guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 07c639cf06740e260b81da9a6d33986023d4f384
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 31 14:27:08 2025 +0000
gnu: python-python3-saml: Fix build.
* gnu/packages/python-web.scm (python-python3-saml)[native-inputs]:
Remove python-coverage, python-flake8, python-pytest, python-setuptools,
and python-wheel; add python-poetry-core.
Change-Id: I42cf83d8bf86349421c61c31b4f87479010e3469
---
gnu/packages/python-web.scm | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index dfe9491fe7..6d28453580 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2714,15 +2714,15 @@ SRP} support.")
(let ((lib (search-input-file inputs
"lib/libxmlsec1-openssl.so")))
(setenv "LD_LIBRARY_PATH" (dirname lib))))))))
- (inputs (list xmlsec-openssl))
- (propagated-inputs (list python-isodate python-lxml python-xmlsec))
- (native-inputs (list python-coverage
- python-flake8
- python-freezegun
- python-poetry-core
- python-pytest
- python-setuptools
- python-wheel))
+ (native-inputs
+ (list python-freezegun
+ python-poetry-core))
+ (inputs
+ (list xmlsec-openssl))
+ (propagated-inputs
+ (list python-isodate
+ python-lxml
+ python-xmlsec))
(home-page "https://github.com/SAML-Toolkits/python3-saml")
(synopsis "Saml Python toolkit")
(description