13 buildPythonPackage rec {
14 pname = "allure-python-commons-test";
16 format = "setuptools";
19 inherit pname version;
20 hash = "sha256-pWkLVfBrLEhdhuTE95K3aqrhEY2wEyo5uRzuJC3ngjE=";
23 nativeBuildInputs = [ setuptools-scm ];
25 propagatedBuildInputs = [
33 ${python.interpreter} -m doctest ./src/container.py
34 ${python.interpreter} -m doctest ./src/report.py
35 ${python.interpreter} -m doctest ./src/label.py
36 ${python.interpreter} -m doctest ./src/result.py
39 pythonImportsCheck = [ "allure_commons_test" ];
42 description = "Just pack of hamcrest matchers for validation result in allure2 json format";
43 homepage = "https://github.com/allure-framework/allure-python";
44 license = licenses.asl20;
45 maintainers = with maintainers; [ evanjs ];