diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-10 01:56:50 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:58 +0100 |
| commit | d913f6bcf829b4f585c1780bda3c837946eaa957 (patch) | |
| tree | 9e6754fb8b192b1ee68284b10b794f954e8f5b42 /gnu/packages/python-xyz.scm | |
| parent | c6d14b9a7d7b147f5c056e47a6befd1a2c1480f1 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 29 |
1 files changed, 9 insertions, 20 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 91ef145776..b068827a8f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17485,27 +17485,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 |
