Skip to content

Commit 116732a

Browse files
committed
python312Packages.radish-bdd: fix missing yaml dependency
``` Traceback (most recent call last): File "/nix/store/m7wyckhw6ll6q2azfpivb0jqk9q9fm8z-python3.12-radish-bdd-0.17.1/bin/.radish-test-wrapped", line 6, in <module> from radish.testing.__main__ import main File "/nix/store/m7wyckhw6ll6q2azfpivb0jqk9q9fm8z-python3.12-radish-bdd-0.17.1/lib/python3.12/site-packages/radish/testing/__main__.py", line 15, in <module> from radish.testing.matches import test_step_matches_configs File "/nix/store/m7wyckhw6ll6q2azfpivb0jqk9q9fm8z-python3.12-radish-bdd-0.17.1/lib/python3.12/site-packages/radish/testing/matches.py", line 12, in <module> import yaml ModuleNotFoundError: No module named 'yaml' ``` radish-test requires pyyaml at runtime.
1 parent 172cb3e commit 116732a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ buildPythonPackage rec {
4141
lxml
4242
parse-type
4343
pysingleton
44+
pyyaml
4445
tag-expressions
4546
];
4647

4748
nativeCheckInputs = [
4849
freezegun
4950
pytest-mock
5051
pytestCheckHook
51-
pyyaml
5252
];
5353

5454
pythonImportsCheck = [ "radish" ];
@@ -60,6 +60,9 @@ buildPythonPackage rec {
6060
homepage = "https://radish-bdd.github.io/";
6161
changelog = "https://github.com/radish-bdd/radish/blob/v${version}/CHANGELOG.md";
6262
license = licenses.mit;
63-
maintainers = with maintainers; [ kalbasit ];
63+
maintainers = with maintainers; [
64+
kalbasit
65+
l33tname
66+
];
6467
};
6568
}

0 commit comments

Comments
 (0)