gnu: Add python-queuelib.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Felix Gruber 2022-04-20 17:27:59 +00:00 committed by Ludovic Courtès
parent f728d1dcd2
commit fce913281f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -29535,6 +29535,30 @@ (define-public python-pydispatcher
and to reference instance methods using weak-references.")
(license license:bsd-3)))
(define-public python-queuelib
(package
(name "python-queuelib")
(version "1.6.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "queuelib" version))
(sha256
(base32 "1lpwq8wx3025i14y5h0hbald2ypbarf081pql6cqcak4y9kp482b"))))
(build-system python-build-system)
(native-inputs (list python-pytest))
(home-page "https://github.com/scrapy/queuelib")
(synopsis
"Collection of persistent (disk-based) and non-persistent (memory-based) queues")
(description "Queuelib is a Python library that implements object
collections which are stored in memory or persisted to disk, provide a
simple API, and run fast.
Queuelib provides collections for queues (FIFO), stacks (LIFO), queues
sorted by priority and queues that are emptied in a round-robin
fashion.")
(license license:bsd-3)))
(define-public python-hypy-utils
(package
(name "python-hypy-utils")