pythonPackages.radish-bdd: init at 0.13.2

Co-Authored-By: Chris <grkcharge@gmail.com>
This commit is contained in:
Wael Nasreddine 2020-06-17 09:44:21 -07:00 committed by Wael Nasreddine
parent d4dae82872
commit a1556613bc
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, click
, colorful
, docopt
, fetchFromGitHub
, freezegun
, humanize
, lark-parser
, parse-type
, pysingleton
, pytestCheckHook
, pyyaml
, tag-expressions
, lxml
, pytest-mock
}:
buildPythonPackage rec {
pname = "radish-bdd";
version = "0.13.2";
# Pypi package does not have necessary test fixtures.
src = fetchFromGitHub {
owner = pname;
repo = "radish";
rev = "v${version}";
sha256 = "1k7l0j8w221pa6k990x4rfm7km4asx5zy4zpzvh029lb9nw2pp8b";
};
propagatedBuildInputs = [
lark-parser
click
colorful
tag-expressions
parse-type
humanize
pyyaml
docopt
pysingleton
];
checkInputs = [ freezegun lxml pytestCheckHook pytest-mock ];
disabledTests = [ "test_main_cli_calls" ];
meta = with lib; {
description = "Behaviour-Driven-Development tool for python";
homepage = "http://radish-bdd.io";
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
};
}

View File

@ -1500,6 +1500,8 @@ in {
pyvoro = callPackage ../development/python-modules/pyvoro { };
radish-bdd = callPackage ../development/python-modules/radish-bdd { };
relatorio = callPackage ../development/python-modules/relatorio { };
reproject = callPackage ../development/python-modules/reproject { };