python3Packages.msgpack: 1.1.0 -> 1.1.1

https://github.com/msgpack/msgpack-python/blob/v1.1.1/ChangeLog.rst

This commit was automatically generated using update-python-libraries.

Changed files
+3 -3
pkgs
development
python-modules
msgpack
+3 -3
pkgs/development/python-modules/msgpack/default.nix
···
buildPythonPackage rec {
pname = "msgpack";
-
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "msgpack";
repo = "msgpack-python";
tag = "v${version}";
-
hash = "sha256-yKQcQi0oSJ33gzsx1Q6ME3GbuSaHR091n7maU6F5QlU=";
};
build-system = [ setuptools ];
···
meta = with lib; {
description = "MessagePack serializer implementation";
homepage = "https://github.com/msgpack/msgpack-python";
-
changelog = "https://github.com/msgpack/msgpack-python/blob/v${version}/ChangeLog.rst";
license = licenses.asl20;
maintainers = with maintainers; [ nickcao ];
};
···
buildPythonPackage rec {
pname = "msgpack";
+
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "msgpack";
repo = "msgpack-python";
tag = "v${version}";
+
hash = "sha256-j1MpdnfG6tCgAFlza64erMhJm/MkSK2QnixNv7MrQes=";
};
build-system = [ setuptools ];
···
meta = with lib; {
description = "MessagePack serializer implementation";
homepage = "https://github.com/msgpack/msgpack-python";
+
changelog = "https://github.com/msgpack/msgpack-python/blob/${src.tag}/ChangeLog.rst";
license = licenses.asl20;
maintainers = with maintainers; [ nickcao ];
};