From 159f059ad606c9ff4e7f81d45d6591fa791fe9dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 23 Nov 2024 20:54:44 -0800 Subject: [PATCH] python312Packages.syrupy: 4.7.2 -> 4.8.0 Diff: https://github.com/syrupy-project/syrupy/compare/refs/tags/v4.7.2...v4.8.0 Changelog: https://github.com/syrupy-project/syrupy/blob/refs/tags/v4.8.0/CHANGELOG.md --- pkgs/development/python-modules/syrupy/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/syrupy/default.nix b/pkgs/development/python-modules/syrupy/default.nix index edc31d3fada2..0fdd193213c4 100644 --- a/pkgs/development/python-modules/syrupy/default.nix +++ b/pkgs/development/python-modules/syrupy/default.nix @@ -5,12 +5,13 @@ python, poetry-core, pytest, + pytest-xdist, invoke, }: buildPythonPackage rec { pname = "syrupy"; - version = "4.7.2"; + version = "4.8.0"; pyproject = true; disabled = lib.versionOlder python.version "3.8.1"; @@ -19,7 +20,7 @@ buildPythonPackage rec { owner = "syrupy-project"; repo = "syrupy"; rev = "refs/tags/v${version}"; - hash = "sha256-akYUsstepkDrRXqp1DY6wEeXMMlLNcCqitnWpjcAurg="; + hash = "sha256-IifGufCUhjbl8Tqvcjm8XF4QPvOsRacPWxI1yT79eNs="; }; build-system = [ poetry-core ]; @@ -29,6 +30,7 @@ buildPythonPackage rec { nativeCheckInputs = [ invoke pytest + pytest-xdist ]; checkPhase = ''