forked from mirrors/nixpkgs
pythonPackages.allure-pytest: init at 2.9.45
This commit is contained in:
parent
5a13ad11ee
commit
17444e7a76
80
pkgs/development/python-modules/allure-pytest/default.nix
Normal file
80
pkgs/development/python-modules/allure-pytest/default.nix
Normal file
|
@ -0,0 +1,80 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, six
|
||||
, pythonOlder
|
||||
, allure-python-commons
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
, pytest-check
|
||||
, pytest-flakes
|
||||
, pytest-lazy-fixture
|
||||
, pytest-rerunfailures
|
||||
, pytest-xdist
|
||||
, pyhamcrest
|
||||
, mock
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "allure-pytest";
|
||||
version = "2.9.45";
|
||||
|
||||
disabled = pythonOlder "3.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "18ys5gi64jlfya6a7shj5lqhwc6cplwgyq3s2n5mg5x513g0yqi0";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "allure_pytest" ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
allure-python-commons
|
||||
six
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pyhamcrest
|
||||
mock
|
||||
pytestCheckHook
|
||||
pytest-check
|
||||
pytest-flakes
|
||||
pytest-lazy-fixture
|
||||
pytest-rerunfailures
|
||||
pytest-xdist
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
"--basetemp"
|
||||
"$(mktemp -d)"
|
||||
"--alluredir"
|
||||
"$(mktemp -d allure-results.XXXXXXX)"
|
||||
"-W"
|
||||
"ignore::pytest.PytestExperimentalApiWarning"
|
||||
"-p"
|
||||
"pytester"
|
||||
];
|
||||
|
||||
# we are skipping some of the integration tests for now
|
||||
disabledTests = [
|
||||
"test_pytest_check"
|
||||
"test_pytest_check_example"
|
||||
"test_select_by_testcase_id_test"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Allure pytest integration. It's developed as pytest plugin and distributed via pypi";
|
||||
homepage = "https://github.com/allure-framework/allure-python";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ evanjs ];
|
||||
};
|
||||
}
|
|
@ -435,6 +435,8 @@ in {
|
|||
|
||||
allure-python-commons-test = callPackage ../development/python-modules/allure-python-commons-test { };
|
||||
|
||||
allure-pytest = callPackage ../development/python-modules/allure-pytest { };
|
||||
|
||||
alot = callPackage ../development/python-modules/alot { };
|
||||
|
||||
alpha-vantage = callPackage ../development/python-modules/alpha-vantage { };
|
||||
|
|
Loading…
Reference in a new issue