summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-22 12:34:30 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-25 12:05:55 +0000
commitcf67f4b0a6b0baa593a260e087415a041fc33f2a (patch)
tree54c675f495bc5e39ce2883852abf130f05b031fe /gnu
parente5a2a9806f3d510604fda4083eb8b3c93bd02e78 (diff)
gnu: python-queuelib: Update to 1.8.0.
* gnu/packages/python-xyz.scm (python-queuelib): Update to 1.8.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-hatchling, python-pytest. [synopsis, description]: Improve style. Change-Id: I9dcc90d8db515d6ec9cdc9ac3bd6d311bfd8e73a Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm33
1 files changed, 17 insertions, 16 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a9789d94e3..e42e3f6141 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34605,25 +34605,26 @@ process.")
(define-public python-queuelib
(package
(name "python-queuelib")
- (version "1.6.2")
+ (version "1.8.0")
(source
- (origin
- (method url-fetch)
- (uri (pypi-uri "queuelib" version))
- (sha256
- (base32 "1lpwq8wx3025i14y5h0hbald2ypbarf081pql6cqcak4y9kp482b"))))
- (build-system python-build-system)
- (native-inputs (list python-pytest))
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/scrapy/queuelib")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rnyk200rd9vvifsx70z2d6h6gkmjmf6384d5bmnslhqircb430b"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-hatchling 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.
+ (synopsis "Collection of queues for Python")
+ (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.")
+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-posix-ipc