me
/
guix
Archived
1
0
Fork 0

gnu: Add python-msgpack-1.0.2.

* gnu/packages/python-xyz.scm (python-msgpack-1.0.2): New variable.
master
Leo Famulari 2022-01-21 02:43:44 -05:00
parent ff4585d147
commit b9e01b7516
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 11 additions and 0 deletions

View File

@ -11321,6 +11321,17 @@ reading and writing MessagePack data.")
(home-page "https://pypi.org/project/msgpack/") (home-page "https://pypi.org/project/msgpack/")
(license license:asl2.0))) (license license:asl2.0)))
(define-public python-msgpack-1.0.2
(package
(inherit python-msgpack)
(version "1.0.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "msgpack" version))
(sha256
(base32
"1109s2yynrahwi64ikax68hx0mbclz8p35afmpphw5dwynb49q7s"))))))
;; This msgpack library's name changed from "python-msgpack" to "msgpack" with ;; This msgpack library's name changed from "python-msgpack" to "msgpack" with
;; release 0.5. Some packages like borg still call it by the old name for now. ;; release 0.5. Some packages like borg still call it by the old name for now.
;; <https://bugs.gnu.org/30662> ;; <https://bugs.gnu.org/30662>