diff --git a/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix index 587e81985532..ae7e59177af8 100644 --- a/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix +++ b/pkgs/development/python-modules/marshmallow-sqlalchemy/default.nix @@ -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 ];