pythonPackages.allure_behave: init at 2.9.45

This commit is contained in:
happysalada 2022-03-11 15:49:30 -05:00 committed by Yt
parent 3145f1ea17
commit 46c9fe7d08
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
, behave
, allure-python-commons
, setuptools-scm
}:
buildPythonPackage rec {
pname = "allure-behave";
version = "2.9.45";
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-aK0SgQIXpuUoSTz8jg5IPKQM2Xvk2EfkSGigsy/GFNo=";
};
nativeBuildInputs = [
setuptools-scm
];
pythonImportsCheck = [ "allure_behave" ];
propagatedBuildInputs = [
allure-python-commons
behave
];
meta = with lib; {
description = "Allure behave integration.";
homepage = "https://github.com/allure-framework/allure-python";
license = licenses.asl20;
maintainers = with maintainers; [ happysalada ];
};
}

View file

@ -466,6 +466,8 @@ in {
allpairspy = callPackage ../development/python-modules/allpairspy { };
allure-behave = callPackage ../development/python-modules/allure-behave { };
allure-python-commons = callPackage ../development/python-modules/allure-python-commons { };
allure-python-commons-test = callPackage ../development/python-modules/allure-python-commons-test { };