python310Packages.pytest-instafail: add changelog to meta

- use lib
This commit is contained in:
Fabian Affolter
2023-04-02 15:56:04 +02:00
committed by GitHub
parent 6e35ea3298
commit 3ebf1a36f6
@@ -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 ];
};
}