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