1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, pytestCheckHook 6}: 7 8buildPythonPackage rec { 9 pname = "pytest-check"; 10 version = "1.0.1"; 11 12 src = fetchPypi { 13 pname = "pytest_check"; 14 inherit version; 15 sha256 = "1i01i5ab06ic11na13gcacrlcs2ab6rmaii0yz0x06z5ynnljn6s"; 16 }; 17 18 buildInputs = [ pytest ]; 19 checkInputs = [ pytestCheckHook ]; 20 21 meta = with lib; { 22 description = "pytest plugin allowing multiple failures per test"; 23 homepage = "https://github.com/okken/pytest-check"; 24 license = licenses.mit; 25 maintainers = [ maintainers.flokli ]; 26 }; 27}