Skip to content

Commit 7e1c782

Browse files
python312Packages.radish-bdd: fix missing yaml dependency (#353167)
2 parents 51c8642 + bcf8a7f commit 7e1c782

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

pkgs/development/python-modules/radish-bdd/default.nix

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
lib,
33
buildPythonPackage,
4-
click,
54
colorful,
65
docopt,
76
fetchFromGitHub,
87
freezegun,
98
humanize,
10-
lark,
119
lxml,
1210
parse-type,
1311
pysingleton,
@@ -23,7 +21,7 @@ buildPythonPackage rec {
2321
version = "0.17.1";
2422
format = "setuptools";
2523

26-
disabled = pythonOlder "3.7";
24+
disabled = pythonOlder "3.10";
2725

2826
src = fetchFromGitHub {
2927
owner = pname;
@@ -33,33 +31,32 @@ buildPythonPackage rec {
3331
};
3432

3533
propagatedBuildInputs = [
36-
click
3734
colorful
3835
docopt
3936
humanize
40-
lark
4137
lxml
4238
parse-type
4339
pysingleton
40+
pyyaml
4441
tag-expressions
4542
];
4643

4744
nativeCheckInputs = [
4845
freezegun
4946
pytest-mock
5047
pytestCheckHook
51-
pyyaml
5248
];
5349

5450
pythonImportsCheck = [ "radish" ];
5551

56-
disabledTests = [ "test_main_cli_calls" ];
57-
5852
meta = with lib; {
5953
description = "Behaviour-Driven-Development tool for python";
6054
homepage = "https://radish-bdd.github.io/";
6155
changelog = "https://github.com/radish-bdd/radish/blob/v${version}/CHANGELOG.md";
6256
license = licenses.mit;
63-
maintainers = with maintainers; [ kalbasit ];
57+
maintainers = with maintainers; [
58+
kalbasit
59+
l33tname
60+
];
6461
};
6562
}

0 commit comments

Comments
 (0)