mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-14 19:58:30 +01:00
44 lines
839 B
Nix
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 ];
|
|
};
|
|
}
|