Merge pull request #205217 from fabaff/msgspec-bump

python310Packages.msgspec: 0.9.1 -> 0.10.1
This commit is contained in:
Fabian Affolter 2022-12-09 09:00:37 +01:00 committed by GitHub
commit e42cdf0616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "msgspec";
version = "0.9.1";
version = "0.10.1";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -16,8 +16,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "jcrist";
repo = pname;
rev = version;
hash = "sha256-q7WNVnkvK7MTleHEuClOFJ0Wv6EWu/3ztMi6TYdKgKU=";
rev = "refs/tags/${version}";
hash = "sha256-/tu29RIszjzYQKeyYe+8Zkud3L/HBoWdXdpNcilWERs=";
};
# Requires libasan to be accessible
@ -30,6 +30,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module to handle JSON/MessagePack";
homepage = "https://github.com/jcrist/msgspec";
changelog = "https://github.com/jcrist/msgspec/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};