mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
05098a9ac3
commit
f1d7d79ad8
1 changed files with 9 additions and 20 deletions
|
@ -17509,27 +17509,16 @@ third-party code.")
|
||||||
(define-public python-msgpack
|
(define-public python-msgpack
|
||||||
(package
|
(package
|
||||||
(name "python-msgpack")
|
(name "python-msgpack")
|
||||||
(version "1.0.4")
|
(version "1.1.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "msgpack" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "msgpack" version))
|
||||||
(base32
|
(sha256
|
||||||
"0pqzy1zclyhd42gfibhkcqymbspy5a6v421g87mh40h3iz0nkn7m"))))
|
(base32 "1k84s6w17i1ylrcm39wi1djjv832vn08w3299xcv5nib9birrdvp"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-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"))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest python-setuptools))
|
||||||
(synopsis "MessagePack (de)serializer")
|
(synopsis "MessagePack (de)serializer")
|
||||||
(description "MessagePack is a fast, compact binary serialization format,
|
(description "MessagePack is a fast, compact binary serialization format,
|
||||||
suitable for similar data to JSON. This package provides CPython bindings for
|
suitable for similar data to JSON. This package provides CPython bindings for
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue