python3Packages.marshmallow-sqlalchemy: 1.0.0 -> 1.1.0

https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/1.1.0/CHANGELOG.rst
This commit is contained in:
Martin Weinelt
2024-10-13 11:08:53 +02:00
parent c7e08603a5
commit f5ce75ae76
@@ -7,13 +7,13 @@
marshmallow,
packaging,
sqlalchemy,
pytest-lazy-fixture,
pytest-lazy-fixtures,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "marshmallow-sqlalchemy";
version = "1.0.0";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "marshmallow_sqlalchemy";
inherit version;
hash = "sha256-IKDy/N1b3chkRPoBRh8X+bahKo3dTKjJs0/i8uNdAKI=";
hash = "sha256-KrCS2iadr6igXVGlhAmvcajSGDlYukcUMSfdI54DWdg=";
};
build-system = [ flit-core ];
@@ -35,7 +35,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "marshmallow_sqlalchemy" ];
nativeCheckInputs = [
pytest-lazy-fixture
pytest-lazy-fixtures
pytestCheckHook
];