summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-01-15 00:06:29 +0100
committerGitHub <noreply@github.com>2023-01-15 00:06:29 +0100
commite7eed39b64e2ce0b018cacfff8eeaa33928e939f (patch)
treec07b485334d1b1995df0f5a2b2c90f1666f1a217
parent12311571ba6da460b1f152477b1d18ae13a5f16a (diff)
parent541a8238f085714451066c511f1ef46c907d9532 (diff)
Merge pull request #210693 from fabaff/marshmallow-dataclass-bump
python310Packages.marshmallow-dataclass: 8.5.10 -> 8.5.11
-rw-r--r--pkgs/development/python-modules/marshmallow-dataclass/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/marshmallow-dataclass/default.nix b/pkgs/development/python-modules/marshmallow-dataclass/default.nix
index 0324d1687ac5..830556e4d72b 100644
--- a/pkgs/development/python-modules/marshmallow-dataclass/default.nix
+++ b/pkgs/development/python-modules/marshmallow-dataclass/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "marshmallow-dataclass";
- version = "8.5.10";
+ version = "8.5.11";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -20,8 +20,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "lovasoa";
repo = "marshmallow_dataclass";
- rev = "v${version}";
- sha256 = "sha256-AxUZf1dRe/7Y96DYJnziMqHKW5xyQv4FIrMMwSZTuGQ=";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-P2eJLNI+G0km2HWZII4tx/uJ+6lvyxtap/qPh13LLmA=";
};
propagatedBuildInputs = [
@@ -53,6 +53,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Automatic generation of marshmallow schemas from dataclasses";
homepage = "https://github.com/lovasoa/marshmallow_dataclass";
+ changelog = "https://github.com/lovasoa/marshmallow_dataclass/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};