guix_mirror_bot pushed a commit to branch python-team in repository guix. commit c540049e5778664abe644fd7e05f2b7ee401a32a Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sun Aug 10 01:56:50 2025 +0100
gnu: python-msgpack: Update to 1.1.1. * gnu/packages/python-xyz.scm (python-msgpack): Update to 1.1.1. [build-system]: Use pyproject. [arguments]: Drop them. [native-inputs]: Add python-setuptools. Change-Id: I4ba8061c95916daa03db8f269ee8019826991de5 --- gnu/packages/python-xyz.scm | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c8e1eaa768..2af485c733 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17533,27 +17533,16 @@ third-party code.") (define-public python-msgpack (package (name "python-msgpack") - (version "1.0.4") - (source (origin - (method url-fetch) - (uri (pypi-uri "msgpack" version)) - (sha256 - (base32 - "0pqzy1zclyhd42gfibhkcqymbspy5a6v421g87mh40h3iz0nkn7m")))) - (build-system python-build-system) - (arguments - `(#:modules ((guix build utils) - (guix build python-build-system) - (ice-9 ftw) - (srfi srfi-1) - (srfi srfi-26)) - #:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "pytest" "-v" "test")))))) + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "msgpack" version)) + (sha256 + (base32 "1k84s6w17i1ylrcm39wi1djjv832vn08w3299xcv5nib9birrdvp")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest python-setuptools)) (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