Unverified Commit e7eed39b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.marshmallow-dataclass: 8.5.10 -> 8.5.11 
parents 12311571 541a8238
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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 ];
  };