diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-12 10:53:52 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-12 12:03:36 -0400 |
commit | 664e8e062ed9113f0ccbdfc1c6a1f97d7eb56168 (patch) | |
tree | 0988c55a911f8fec51b2eddc677e73c2112d3241 /gnu | |
parent | 193e294b2aeeddecb225a7ce86e7c996ecf86e2a (diff) | |
download | guix-664e8e062ed9113f0ccbdfc1c6a1f97d7eb56168.tar.gz |
gnu: python-lz4: Update to 4.3.2.
* gnu/packages/python-compression.scm (python-lz4): Update to 4.3.2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-compression.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index c483d68b5f..ec96b6197e 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -342,20 +342,18 @@ Python strings.") (define-public python-lz4 (package (name "python-lz4") - (version "4.0.2") + (version "4.3.2") (source (origin (method url-fetch) (uri (pypi-uri "lz4" version)) (sha256 (base32 - "16vj2bnhhdkcz2a2ai2mx2kf9ngx1cjr18636yp1514kq9r72fq8")) + "1nmc36j5xnk7mvwwpm0nb1sddjk5iv77h877fdkkxcngm621shz1")) (modules '((guix build utils))) - (snippet - '(begin - ;; Remove bundled copy of lz4. - (delete-file-recursively "lz4libs") - #t)))) + (snippet '(begin + ;; Remove bundled copy of lz4. + (delete-file-recursively "lz4libs"))))) (build-system python-build-system) (arguments (list #:phases |