guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit aa80df7e960521ceae6323ec0e7313b2435e15c0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Dec 10 23:06:11 2025 +0000
gnu: python-msgpack: Update to 1.1.2.
* gnu/packages/python-xyz.scm (python-msgpack): Update to 1.1.2.
Change-Id: Ic69b1b9f8fc9d6da32c00584e86de42af167ec0c
---
gnu/packages/python-xyz.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6b061081fb..b722fadda5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17081,21 +17081,22 @@ third-party code.")
(define-public python-msgpack
(package
(name "python-msgpack")
- (version "1.1.1")
+ (version "1.1.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "msgpack" version))
(sha256
- (base32 "1k84s6w17i1ylrcm39wi1djjv832vn08w3299xcv5nib9birrdvp"))))
+ (base32 "0zpl4sb9zk7fh3abaxqlf65d0g3hvjy6k028k3rn1pbk2cy7cq1v"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-setuptools))
+ (list python-pytest
+ python-setuptools))
+ (home-page "https://msgpack.org/")
(synopsis "MessagePack (de)serializer")
(description "MessagePack is a fast, compact binary serialization format,
suitable for similar data to JSON. This package provides CPython bindings for
reading and writing MessagePack data.")
- (home-page "https://pypi.org/project/msgpack/")
(license license:asl2.0)))
(define-public python-msgpack-for-borg