pythonPackages.radish-bdd: init at 0.13.2
Co-Authored-By: Chris <grkcharge@gmail.com>
This commit is contained in:
parent
d4dae82872
commit
a1556613bc
52
pkgs/development/python-modules/radish-bdd/default.nix
Normal file
52
pkgs/development/python-modules/radish-bdd/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user