From f5ce75ae7650a1631973521d975ceb537fc36230 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 29 Sep 2024 17:05:30 +0200 Subject: [PATCH] python3Packages.marshmallow-sqlalchemy: 1.0.0 -> 1.1.0 https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/1.1.0/CHANGELOG.rst --- .../python-modules/marshmallow-sqlalchemy/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ];