mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 01:11:55 -05:00
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:
parent
f728d1dcd2
commit
fce913281f
1 changed files with 24 additions and 0 deletions
|
@ -29535,6 +29535,30 @@ (define-public python-pydispatcher
|
||||||
and to reference instance methods using weak-references.")
|
and to reference instance methods using weak-references.")
|
||||||
(license license:bsd-3)))
|
(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
|
(define-public python-hypy-utils
|
||||||
(package
|
(package
|
||||||
(name "python-hypy-utils")
|
(name "python-hypy-utils")
|
||||||
|
|
Loading…
Reference in a new issue