From 020b948e2b409811da698d26492bb251b966954f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 26 Jan 2026 22:12:43 -0800 Subject: [PATCH] python3Packages.syrupy: 5.0.0 -> 5.1.0 Diff: https://github.com/syrupy-project/syrupy/compare/v5.0.0...v5.1.0 Changelog: https://github.com/syrupy-project/syrupy/blob/v5.1.0/CHANGELOG.md --- pkgs/development/python-modules/syrupy/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/syrupy/default.nix b/pkgs/development/python-modules/syrupy/default.nix index a213f3a3f547..4b2b521e033c 100644 --- a/pkgs/development/python-modules/syrupy/default.nix +++ b/pkgs/development/python-modules/syrupy/default.nix @@ -1,8 +1,10 @@ { lib, + attrs, buildPythonPackage, fetchFromGitHub, poetry-core, + pydantic, pytest, pytest-xdist, invoke, @@ -10,14 +12,14 @@ buildPythonPackage rec { pname = "syrupy"; - version = "5.0.0"; + version = "5.1.0"; pyproject = true; src = fetchFromGitHub { owner = "syrupy-project"; repo = "syrupy"; tag = "v${version}"; - hash = "sha256-TRwU9+2RvZB2gbVm82DzLge8QoDflxjavcRdYZUgVfs="; + hash = "sha256-oogH5Q+0leZsfu/7r3tZmB2rxjcUOmGAsn4Z50oSlH8="; }; build-system = [ poetry-core ]; @@ -25,7 +27,9 @@ buildPythonPackage rec { buildInputs = [ pytest ]; nativeCheckInputs = [ + attrs invoke + pydantic pytest pytest-xdist ];