This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 8781aff522 gnu: python-trio: Fix building on some platforms.
8781aff522 is described below
commit 8781aff522b9291b4a24a94b4f23aa786f5af6db
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Feb 8 11:57:41 2026 +0200
gnu: python-trio: Fix building on some platforms.
* gnu/packages/python-xyz.scm (python-trio)[native-inputs]: Only include
python-cryptography on systems where it is supported.
Change-Id: I2933b1fee70b9b3d250a52e20f068a371325c611
---
gnu/packages/python-xyz.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b2b837bdd5..0750a9a5f9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37774,9 +37774,11 @@ ISO 8859, etc.).")
(if (supported-package? python-trustme)
(list python-trustme)
'())
- (list python-async-generator
- python-cryptography
- python-jedi
+ (list python-async-generator)
+ (if (supported-package? python-cryptography)
+ (list python-cryptography)
+ '())
+ (list python-jedi
python-pylint
python-pytest
python-setuptools)))