11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
22 sha256 = "R0RSdKTyJYGq+x0+ut4pJEywTGNgGp/ps36ZaH5dyY4=";
25 buildInputs = [ pytest ];
27 propagatedBuildInputs = [ tappy ];
29 nativeCheckInputs = [ pytestCheckHook ];
32 # Fixed in 4ed0138bf659c348b6dfb8bb701ae1989625d3d8 and hopefully in next release
33 "test_unittest_expected_failure"
36 pythonImportsCheck = [ "pytest_tap" ];
39 description = "Test Anything Protocol (TAP) reporting plugin for pytest";
40 homepage = "https://github.com/python-tap/pytest-tap";
41 changelog = "https://github.com/python-tap/pytest-tap/blob/v${version}/docs/releases.rst";
42 license = licenses.bsd2;
43 maintainers = with maintainers; [ cynerd ];