d1c9b2171f
This commit was automatically generated using update-python-libraries.
41 lines
837 B
Nix
41 lines
837 B
Nix
{
|
|
lib,
|
|
allure-python-commons,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytest,
|
|
pythonOlder,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "allure-pytest";
|
|
version = "2.15.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-uPRk07/rbLXmp35w6s0ao3YhM2d8q+zlegfJ87zUseg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ allure-python-commons ];
|
|
|
|
# Tests were moved to the meta package
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "allure_pytest" ];
|
|
|
|
meta = with lib; {
|
|
description = "Allure integrations for Python test frameworks";
|
|
homepage = "https://github.com/allure-framework/allure-python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ evanjs ];
|
|
};
|
|
}
|