python3.pkgs.u-msgpack-python: 2.7.2 -> 2.8.0

This commit is contained in:
Theodore Ni 2023-08-21 22:11:25 -07:00
parent d2d2edea93
commit 9dbecb2b42
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -7,14 +7,15 @@
buildPythonPackage rec {
pname = "u-msgpack-python";
version = "2.7.2";
version = "2.8.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-6G96xqoO9MbEnwBLT9Q1vOmcI+LdXXMAPz+YFgJMK9g=";
hash = "sha256-uAGoPW7XXm30HkRRi08qnCIdwtpLzVOA46D+2lILxho=";
};
LC_ALL="en_US.UTF-8";
env.LC_ALL="en_US.UTF-8";
buildInputs = [ glibcLocales ];
@ -23,7 +24,7 @@ buildPythonPackage rec {
meta = {
description = "A portable, lightweight MessagePack serializer and deserializer written in pure Python";
homepage = "https://github.com/vsergeev/u-msgpack-python";
changelog = "https://github.com/vsergeev/u-msgpack-python/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
};
}