nixpkgs/pkgs/development/python-modules/allure-python-commons/default.nix
Martin Weinelt 8ea6bde88d
treewide: prune pythonOlder 3.10/3.11
This is a post 3.10 removal cleanup.
2026-02-15 04:33:54 +01:00

42 lines
822 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
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 = {
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 = lib.licenses.asl20;
maintainers = with lib.maintainers; [ evanjs ];
};
}