diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2026-02-08 11:57:41 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2026-02-08 11:58:47 +0200 |
| commit | 8781aff522b9291b4a24a94b4f23aa786f5af6db (patch) | |
| tree | c1eecbf4fb4273e0e5884c6fad8cfefdafc24a24 | |
| parent | ae90908399398f3a384b8107bbf9839e57971fce (diff) | |
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
| -rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b2b837bdd5f..0750a9a5f92 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))) |
