blob: db71edb157fa920444844191a622ce19cf632402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
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 = {
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 ];
};
}
|