gnu: Add python-iterable-io.

* gnu/packages/python-xyz.scm (python-iterable-io): New variable.

Change-Id: Icd4b10e27b5f4963fd3e3ea516676e84b3c5ecd4
This commit is contained in:
TakeV 2024-04-03 17:55:10 -04:00
parent c9cd16c630
commit d994fa7c40
Signed by: TakeV
GPG Key ID: A64F41345C7400AF
1 changed files with 17 additions and 0 deletions

View File

@ -34979,6 +34979,23 @@ sources. For example, it allows you to have all your casting and
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")