13 buildPythonPackage rec {
14 pname = "allure-python-commons-test";
17 disabled = pythonOlder "3.4";
20 inherit pname version;
21 sha256 = "sha256-69iSW5pUbYQpA/dgpCr088CUaa1BGIwlijltmFZnEa0=";
28 propagatedBuildInputs = [ attrs pluggy six pyhamcrest ];
31 ${python.interpreter} -m doctest ./src/container.py
32 ${python.interpreter} -m doctest ./src/report.py
33 ${python.interpreter} -m doctest ./src/label.py
34 ${python.interpreter} -m doctest ./src/result.py
37 pythonImportsCheck = [ "allure_commons_test" ];
40 description = "Just pack of hamcrest matchers for validation result in allure2 json format";
41 homepage = "https://github.com/allure-framework/allure-python";
42 license = licenses.asl20;
43 maintainers = with maintainers; [ evanjs ];