lol

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

+5 -5
+5 -5
pkgs/development/python-modules/marshmallow/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "marshmallow"; 13 - version = "3.19.0"; 13 + version = "3.20.1"; 14 14 format = "setuptools"; 15 15 16 - disabled = pythonOlder "3.6"; 16 + disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "marshmallow-code"; 20 20 repo = pname; 21 - rev = version; 22 - hash = "sha256-b1brLHM48t45bwUXk7QreLLmvTzU0sX7Uoc1ZAgGkrE="; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-sPYiup7ontnubtBxv+rIT0up4IHPJNCUlH9J4FlHsss="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ ··· 37 37 ]; 38 38 39 39 meta = with lib; { 40 - changelog = "https://github.com/marshmallow-code/marshmallow/blob/${src.rev}/CHANGELOG.rst"; 41 40 description = "Library for converting complex objects to and from simple Python datatypes"; 42 41 homepage = "https://github.com/marshmallow-code/marshmallow"; 42 + changelog = "https://github.com/marshmallow-code/marshmallow/blob/${version}/CHANGELOG.rst"; 43 43 license = licenses.mit; 44 44 maintainers = with maintainers; [ cript0nauta ]; 45 45 };