diff --git a/pkgs/development/python-modules/mashumaro/default.nix b/pkgs/development/python-modules/mashumaro/default.nix index d0acb1d790d8..499193da4cf0 100644 --- a/pkgs/development/python-modules/mashumaro/default.nix +++ b/pkgs/development/python-modules/mashumaro/default.nix @@ -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 ]; }; }