python312Packages.pytest-check: refactor

This commit is contained in:
Fabian Affolter
2024-01-20 14:50:35 +01:00
committed by GitHub
parent 600f5ebba8
commit a3ebfea618
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "pytest-check";
version = "2.3.1";
format = "pyproject";
pyproject = true;
src = fetchPypi {
pname = "pytest_check";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
flit-core
];
propagatedBuildInputs = [
buildInputs = [
pytest
];
@@ -29,10 +29,15 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"pytest_check"
];
meta = with lib; {
description = "pytest plugin allowing multiple failures per test";
homepage = "https://github.com/okken/pytest-check";
changelog = "https://github.com/okken/pytest-check/releases/tag/${version}";
license = licenses.mit;
maintainers = [ maintainers.flokli ];
maintainers = with maintainers; [ flokli ];
};
}