Unverified Commit 3ebf1a36 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.pytest-instafail: add changelog to meta

- use lib
parent 6e35ea32
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -15,10 +15,12 @@ buildPythonPackage rec {

  nativeCheckInputs = [ pytestCheckHook ];
  pythonImportsCheck = [ "pytest_instafail" ];
  meta = {

  meta = with lib; {
    description = "pytest plugin that shows failures and errors instantly instead of waiting until the end of test session";
    homepage = "https://github.com/pytest-dev/pytest-instafail";
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.jacg ];
    changelog = "https://github.com/pytest-dev/pytest-instafail/blob/v${version}/CHANGES.rst";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jacg ];
  };
}