Unverified Commit f8a850f5 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

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

parents cf8585cd 0067a449
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -49,6 +49,7 @@ buildPythonPackage rec {
    # That prevents us from updating individual components.
    "langchain-core"
    "numpy"
    "syrupy"
  ];

  dependencies = [
+3 −3
Original line number Diff line number Diff line
@@ -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 ];
  };
}