python3Packages.mashumaro: 3.16 -> 3.17

Diff: https://github.com/Fatal1ty/mashumaro/compare/v3.16...v3.17

Changelog: https://github.com/Fatal1ty/mashumaro/releases/tag/v3.17
This commit is contained in:
Robert Schütz
2025-10-31 08:21:09 -07:00
parent a7fc11be66
commit 8c503e7647

View File

@@ -18,16 +18,14 @@
buildPythonPackage rec {
pname = "mashumaro";
version = "3.16";
version = "3.17";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Fatal1ty";
repo = "mashumaro";
tag = "v${version}";
hash = "sha256-SAdhBNQx5zWsXFwWxEAozprb2c7eJRdxZQwZMgBj/iA=";
hash = "sha256-oQKSIDrIPlY1m63uP9Jxpgf7ruaZpt9uZF4hTso503U=";
};
build-system = [ setuptools ];
@@ -51,11 +49,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "mashumaro" ];
meta = with lib; {
meta = {
description = "Serialization library on top of dataclasses";
homepage = "https://github.com/Fatal1ty/mashumaro";
changelog = "https://github.com/Fatal1ty/mashumaro/releases/tag/${src.tag}";
license = licenses.asl20;
maintainers = with maintainers; [ tjni ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ tjni ];
};
}