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

python313Packages.approvaltests: 14.3.1 -> 14.5.0 (#398017)

parents 2bf02093 254b8abb
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -13,7 +13,6 @@
  pytest,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  setuptools,
  testfixtures,
  typing-extensions,
@@ -21,16 +20,14 @@

buildPythonPackage rec {
  pname = "approvaltests";
  version = "14.3.1";
  version = "14.5.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "approvals";
    repo = "ApprovalTests.Python";
    tag = "v${version}";
    hash = "sha256-cFxa+QNfMk8+5jC4cxhbUs09/0tHjOgdsaE8XfxG6yk=";
    hash = "sha256-VWYl+8hS9XnvtqmokNntdKGHWSJVlGPomvAEwaBcjY8=";
  };

  build-system = [ setuptools ];
@@ -67,11 +64,11 @@ buildPythonPackage rec {
    "approvaltests.reporters.generic_diff_reporter_factory"
  ];

  meta = with lib; {
  meta = {
    description = "Assertion/verification library to aid testing";
    homepage = "https://github.com/approvals/ApprovalTests.Python";
    changelog = "https://github.com/approvals/ApprovalTests.Python/releases/tag/v${version}";
    license = licenses.asl20;
    changelog = "https://github.com/approvals/ApprovalTests.Python/releases/tag/${src.tag}";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}