mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
python312Packages.radish-bdd: fix missing yaml dependency (#353167)
This commit is contained in:
commit
7e1c782391
@ -1,13 +1,11 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
click,
|
||||
colorful,
|
||||
docopt,
|
||||
fetchFromGitHub,
|
||||
freezegun,
|
||||
humanize,
|
||||
lark,
|
||||
lxml,
|
||||
parse-type,
|
||||
pysingleton,
|
||||
@ -23,7 +21,7 @@ buildPythonPackage rec {
|
||||
version = "0.17.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
disabled = pythonOlder "3.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
@ -33,14 +31,13 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
colorful
|
||||
docopt
|
||||
humanize
|
||||
lark
|
||||
lxml
|
||||
parse-type
|
||||
pysingleton
|
||||
pyyaml
|
||||
tag-expressions
|
||||
];
|
||||
|
||||
@ -48,18 +45,18 @@ buildPythonPackage rec {
|
||||
freezegun
|
||||
pytest-mock
|
||||
pytestCheckHook
|
||||
pyyaml
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "radish" ];
|
||||
|
||||
disabledTests = [ "test_main_cli_calls" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Behaviour-Driven-Development tool for python";
|
||||
homepage = "https://radish-bdd.github.io/";
|
||||
changelog = "https://github.com/radish-bdd/radish/blob/v${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
maintainers = with maintainers; [
|
||||
kalbasit
|
||||
l33tname
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user