Merge pull request #218083 from r-ryantm/auto-update/python310Packages.marshmallow-sqlalchemy

python310Packages.marshmallow-sqlalchemy: 0.28.1 -> 0.28.2
This commit is contained in:
Fabian Affolter
2023-02-25 00:10:06 +01:00
committed by GitHub
@@ -3,6 +3,7 @@
, pythonOlder
, fetchPypi
, marshmallow
, packaging
, sqlalchemy
, pytest-lazy-fixture
, pytestCheckHook
@@ -10,16 +11,19 @@
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
version = "0.28.1";
disabled = pythonOlder "3.6";
version = "0.28.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-qjdnRylngKVjVeMGe5yL9DoqHET/mF3oKzpdnhYcorg=";
hash = "sha256-KrDxKAx5Plrsgd6rPmPsI2iN3+BeXzislgNooQeVIKE=";
};
propagatedBuildInputs = [
marshmallow
packaging
sqlalchemy
];
@@ -33,9 +37,10 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
description = "SQLAlchemy integration with marshmallow";
homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy";
changelog = "https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}