guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 361fdc5ae6d2edb7a889fd4476696e9300ab598d
Author: Dariqq <[email protected]>
AuthorDate: Sat Feb 7 13:46:04 2026 +0000
gnu: python-trio: Support more systems.
* gnu/packages/python-xyz.scm (python-trio)[native-inputs]: Only add
python-cryptography when it is supported.
Change-Id: I78f651646268d18418056435ccaa19caf07f83c3
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b2b837bdd5..f97e79eddb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37774,8 +37774,10 @@ ISO 8859, etc.).")
(if (supported-package? python-trustme)
(list python-trustme)
'())
+ (if (supported-package? python-cryptography)
+ (list python-cryptography)
+ '())
(list python-async-generator
- python-cryptography
python-jedi
python-pylint
python-pytest