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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
lib,
buildPythonPackage,
colorful,
docopt,
fetchFromGitHub,
freezegun,
humanize,
lxml,
parse-type,
pysingleton,
pytest-mock,
pytestCheckHook,
pyyaml,
tag-expressions,
}:
buildPythonPackage rec {
pname = "radish-bdd";
version = "0.18.3";
format = "setuptools";
src = fetchFromGitHub {
owner = pname;
repo = "radish";
tag = "v${version}";
hash = "sha256-UjJz9ysejz5DBewMwoVof1+JU8tbGbBa3z1quuN1TWg=";
};
propagatedBuildInputs = [
colorful
docopt
humanize
lxml
parse-type
pysingleton
pyyaml
tag-expressions
];
nativeCheckInputs = [
freezegun
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [ "radish" ];
meta = {
description = "Behaviour-Driven-Development tool for python";
homepage = "https://radish-bdd.github.io/";
changelog = "https://github.com/radish-bdd/radish/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
kalbasit
l33tname
];
};
}
|