9 buildPythonPackage rec {
10 pname = "pytest-subtests";
12 disabled = pythonOlder "3.5";
15 inherit pname version;
16 sha256 = "sha256-jZ4sHR3OEfe30snQkgLr/HdXt/8MrJtyrTKO3+fuA3s=";
19 nativeBuildInputs = [ setuptools-scm ];
21 checkInputs = [ pytestCheckHook ];
23 pythonImportsCheck = [ "pytest_subtests" ];
26 description = "pytest plugin for unittest subTest() support and subtests fixture";
27 homepage = "https://github.com/pytest-dev/pytest-subtests";
28 license = licenses.mit;
29 maintainers = with maintainers; [ fab ];