~ruther/guix-local

fd116510b2f4fd731bb775affd2b03329982b65b — TakeV 1 year, 10 months ago 090fd6a
gnu: Add python-iterable-io.

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

Change-Id: Icd4b10e27b5f4963fd3e3ea516676e84b3c5ecd4
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 23 insertions(+), 0 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +23 -0
@@ 151,6 151,7 @@
;;; Copyright © 2024 Ian Eure <ian@retrospec.tv>
;;; Copyright © 2024 Adriel Dumas--Jondeau <leirda@disroot.org>
;;; Copyright © 2024 Navid Afkhami <navid.afkhami@mdc-berlin.de>
;;; Copyright © 2024 TakeV <takev@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 34998,6 34999,28 @@ 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
     "@code{iterable-io} is a small Python library that provides an adapter so
that it's possible to read from
@url{https://docs.python.org/3/glossary.html#term-iterable,iterable} objects
in the same way as
@url{https://docs.python.org/3/glossary.html#term-file-object,file-like}
objects.")
    (license license:lgpl3)))

(define-public python-iteround
  (package
    (name "python-iteround")