From d994fa7c40e19547c28a1944409c5de51f725344 Mon Sep 17 00:00:00 2001 From: TakeV Date: Wed, 3 Apr 2024 17:55:10 -0400 Subject: [PATCH] gnu: Add python-iterable-io. * gnu/packages/python-xyz.scm (python-iterable-io): New variable. Change-Id: Icd4b10e27b5f4963fd3e3ea516676e84b3c5ecd4 --- gnu/packages/python-xyz.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cd10f304c8..9487b1fac9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -34979,6 +34979,23 @@ (define-public python-itemloaders parsing rules in a single place.") (license license:bsd-3))) +(define-public python-iterable-io + (package + (name "python-iterable-io") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "iterable-io" version)) + (sha256 + (base32 "0g4cn522n4dv6ly8pwf97dc62rr4f7my38v0bh6vmac7jmrip7pv")))) + (build-system pyproject-build-system) + (home-page "https://github.com/pR0Ps/iterable-io") + (synopsis "Adapt generators and other iterables to a file-like interface") + (description + "Adapt generators and other iterables to a file-like interface") + (license license:lgpl3))) + (define-public python-iteround (package (name "python-iteround")