diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-12-15 21:55:30 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-12-16 23:32:27 +0300 |
commit | 1adeace81635a02066fb7b02b5ee4f46a8605b15 (patch) | |
tree | 34846bc64ebdb2a17be744cc5e510925cf48e680 /gnu | |
parent | 48d4df3c29a9b3d8806831cd3dea65fac92567ca (diff) | |
download | guix-1adeace81635a02066fb7b02b5ee4f46a8605b15.tar guix-1adeace81635a02066fb7b02b5ee4f46a8605b15.tar.gz |
gnu: python-iterable-io: Fix build.
* gnu/packages/python-xyz.scm (python-iterable-io) [native-inputs]: Add
"python-setuptools" and "python-wheel".
Change-Id: I08e8135178e0558239f39017bf8ca709a63205b6
Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 39897b47b4..eea388ca89 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -37820,6 +37820,7 @@ parsing rules in a single place.") (sha256 (base32 "0g4cn522n4dv6ly8pwf97dc62rr4f7my38v0bh6vmac7jmrip7pv")))) (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/pR0Ps/iterable-io") (synopsis "Adapt generators and other iterables to a file-like interface") (description |