lol

Merge pull request #210693 from fabaff/marshmallow-dataclass-bump

python310Packages.marshmallow-dataclass: 8.5.10 -> 8.5.11

authored by

Fabian Affolter and committed by
GitHub
e7eed39b 12311571

+4 -3
+4 -3
pkgs/development/python-modules/marshmallow-dataclass/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "marshmallow-dataclass"; 15 - version = "8.5.10"; 15 + version = "8.5.11"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 20 20 src = fetchFromGitHub { 21 21 owner = "lovasoa"; 22 22 repo = "marshmallow_dataclass"; 23 - rev = "v${version}"; 24 - sha256 = "sha256-AxUZf1dRe/7Y96DYJnziMqHKW5xyQv4FIrMMwSZTuGQ="; 23 + rev = "refs/tags/v${version}"; 24 + hash = "sha256-P2eJLNI+G0km2HWZII4tx/uJ+6lvyxtap/qPh13LLmA="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [ ··· 53 53 meta = with lib; { 54 54 description = "Automatic generation of marshmallow schemas from dataclasses"; 55 55 homepage = "https://github.com/lovasoa/marshmallow_dataclass"; 56 + changelog = "https://github.com/lovasoa/marshmallow_dataclass/blob/v${version}/CHANGELOG.md"; 56 57 license = with licenses; [ mit ]; 57 58 maintainers = with maintainers; [ fab ]; 58 59 };