Merge pull request #195334 from r-ryantm/auto-update/python310Packages.radish-bdd

python310Packages.radish-bdd: 0.13.4 -> 0.14.0
This commit is contained in:
Mario Rodas 2022-10-14 02:34:43 -05:00 committed by GitHub
commit ee330fed4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,41 +7,56 @@
, freezegun
, humanize
, lark
, lxml
, parse-type
, pysingleton
, pytest-mock
, pytestCheckHook
, pythonOlder
, pyyaml
, tag-expressions
, lxml
, pytest-mock
}:
buildPythonPackage rec {
pname = "radish-bdd";
version = "0.13.4";
version = "0.14.0";
format = "setuptools";
disabled = pythonOlder "3.7";
# Pypi package does not have necessary test fixtures.
src = fetchFromGitHub {
owner = pname;
repo = "radish";
rev = "v${version}";
sha256 = "1slfgh61648i009qj8156qipy21a6zm8qzjk00kbm5kk5z9jfryi";
rev = "refs/tags/v${version}";
hash = "sha256-7C8XgGlpNVUONSfg9DsIS8Awpy6iDzFOLAFs1xpfHXI=";
};
propagatedBuildInputs = [
lark
click
colorful
tag-expressions
parse-type
humanize
pyyaml
docopt
humanize
lark
lxml
parse-type
pysingleton
tag-expressions
];
checkInputs = [ freezegun lxml pytestCheckHook pytest-mock ];
disabledTests = [ "test_main_cli_calls" ];
checkInputs = [
freezegun
pytest-mock
pytestCheckHook
pyyaml
];
pythonImportsCheck = [
"radish"
];
disabledTests = [
"test_main_cli_calls"
];
meta = with lib; {
description = "Behaviour-Driven-Development tool for python";