From 9cde80c59546ec33fb49022fc64f7316397d1f01 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 22 Aug 2023 09:19:32 +0200 Subject: [PATCH] python311Packages.marshmallow: 3.19.0 -> 3.20.1 Diff: https://github.com/marshmallow-code/marshmallow/compare/refs/tags/3.19.0...3.20.1 Changelog: https://github.com/marshmallow-code/marshmallow/blob/3.20.1/CHANGELOG.rst --- .../development/python-modules/marshmallow/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/marshmallow/default.nix b/pkgs/development/python-modules/marshmallow/default.nix index 5fcaf478f186..bbe9c9bf157d 100644 --- a/pkgs/development/python-modules/marshmallow/default.nix +++ b/pkgs/development/python-modules/marshmallow/default.nix @@ -10,16 +10,16 @@ buildPythonPackage rec { pname = "marshmallow"; - version = "3.19.0"; + version = "3.20.1"; format = "setuptools"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "marshmallow-code"; repo = pname; - rev = version; - hash = "sha256-b1brLHM48t45bwUXk7QreLLmvTzU0sX7Uoc1ZAgGkrE="; + rev = "refs/tags/${version}"; + hash = "sha256-sPYiup7ontnubtBxv+rIT0up4IHPJNCUlH9J4FlHsss="; }; propagatedBuildInputs = [ @@ -37,9 +37,9 @@ buildPythonPackage rec { ]; meta = with lib; { - changelog = "https://github.com/marshmallow-code/marshmallow/blob/${src.rev}/CHANGELOG.rst"; description = "Library for converting complex objects to and from simple Python datatypes"; homepage = "https://github.com/marshmallow-code/marshmallow"; + changelog = "https://github.com/marshmallow-code/marshmallow/blob/${version}/CHANGELOG.rst"; license = licenses.mit; maintainers = with maintainers; [ cript0nauta ]; };