python3Packages.pytest-check: 1.0.5 -> 1.0.9

This commit is contained in:
Martin Weinelt 2022-09-14 23:36:18 +02:00
parent 23efe5abe7
commit 091852837e

View File

@ -7,17 +7,21 @@
buildPythonPackage rec {
pname = "pytest-check";
version = "1.0.5";
version = "1.0.9";
format = "flit";
src = fetchPypi {
pname = "pytest_check";
inherit version;
sha256 = "sha256-ucjbax3uPB5mFivQebgcCDKWy3Ex6YQVGcKKQIGKSHU=";
inherit pname version;
hash = "sha256-zVMQTzpPw2RPcCi1XiOHZvbWWhKiB9MbzUyLoA2yP9k=";
};
buildInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
buildInputs = [
pytest
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "pytest plugin allowing multiple failures per test";