python3Packages.syrupy: 4.9.1 -> 5.0.0 (#447139)

This commit is contained in:
dotlambda
2025-10-14 04:07:40 +00:00
committed by GitHub
2 changed files with 4 additions and 3 deletions
@@ -49,6 +49,7 @@ buildPythonPackage rec {
# That prevents us from updating individual components.
"langchain-core"
"numpy"
"syrupy"
];
dependencies = [
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "syrupy";
version = "4.9.1";
version = "5.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "syrupy-project";
repo = "syrupy";
tag = "v${version}";
hash = "sha256-AK4cB7MiL52oRUV6ArNj94srMsEpk/YQdjJ5tnjrAYM=";
hash = "sha256-TRwU9+2RvZB2gbVm82DzLge8QoDflxjavcRdYZUgVfs=";
};
build-system = [ poetry-core ];
@@ -43,7 +43,7 @@ buildPythonPackage rec {
changelog = "https://github.com/syrupy-project/syrupy/blob/${src.tag}/CHANGELOG.md";
description = "Pytest Snapshot Test Utility";
homepage = "https://github.com/syrupy-project/syrupy";
license = lib.licenses.asl20;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}