2021-12-06 16:07:01 +00:00
|
|
|
{ lib
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, attrs
|
|
|
|
, pluggy
|
|
|
|
, six
|
|
|
|
, allure-python-commons-test
|
|
|
|
, setuptools-scm
|
|
|
|
, python
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "allure-python-commons";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "2.13.5";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2021-12-06 16:07:01 +00:00
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2021-12-06 16:07:01 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-05-15 15:35:15 +00:00
|
|
|
hash = "sha256-ojLnlVgR+Yjkmkwd1sFszn6bgdDqBCKx5WVNMlTiyvM=";
|
2021-12-06 16:07:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools-scm
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ attrs pluggy six allure-python-commons-test ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} -m doctest ./src/utils.py
|
|
|
|
${python.interpreter} -m doctest ./src/mapping.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "allure" "allure_commons" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Common engine for all modules. It is useful for make integration with your homemade frameworks";
|
|
|
|
homepage = "https://github.com/allure-framework/allure-python";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ evanjs ];
|
|
|
|
};
|
|
|
|
}
|