nixpkgs/pkgs/development/python-modules/allure-python-commons/default.nix
Martin Weinelt f2a3040c5f
python3Packages.allure-python-commons: 2.13.5 -> 2.15.0
This commit was automatically generated using update-python-libraries.
2025-08-09 18:57:57 +02:00

44 lines
839 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
pythonOlder,
attrs,
pluggy,
six,
allure-python-commons-test,
setuptools-scm,
python,
}:
buildPythonPackage rec {
pname = "allure-python-commons";
version = "2.15.0";
pyproject = true;
src = fetchPypi {
pname = "allure_python_commons";
inherit version;
hash = "sha256-T2Oci7S3nfDZTxuqiHgsk5m+P0X9g5rlg6MUpdRRuXg=";
};
build-system = [ setuptools-scm ];
dependencies = [
attrs
pluggy
];
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 ];
};
}