11 buildPythonPackage rec {
12 pname = "allure-pytest";
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-DvjheQxEqYjba4PE1PXpFFHixMjqEGAd+ohSjSOvz24=";
23 nativeBuildInputs = [ setuptools-scm ];
25 buildInputs = [ pytest ];
27 propagatedBuildInputs = [ allure-python-commons ];
29 # Tests were moved to the meta package
32 pythonImportsCheck = [ "allure_pytest" ];
35 description = "Allure integrations for Python test frameworks";
36 homepage = "https://github.com/allure-framework/allure-python";
37 license = licenses.asl20;
38 maintainers = with maintainers; [ evanjs ];