python3Packages.cucumber-tag-expressions: init at 3.0.0
This commit is contained in:
parent
798672d6fa
commit
2126015ad4
@ -0,0 +1,21 @@
|
||||
{ lib, fetchPypi, buildPythonPackage, pytest, pytest-html }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cucumber-tag-expressions";
|
||||
version = "3.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0kb8dq458sflwl2agb2v9hp04qwygslrhdps819vq27wc44jabxw";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest pytest-html ];
|
||||
checkPhase = "pytest tests/*/*.py";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/cucumber/tag-expressions-python";
|
||||
description = "Provides tag-expression parser for cucumber/behave";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ maxxk ];
|
||||
};
|
||||
}
|
@ -7637,6 +7637,8 @@ in {
|
||||
|
||||
pure-pcapy3 = callPackage ../development/python-modules/pure-pcapy3 { };
|
||||
|
||||
cucumber-tag-expressions = callPackage ../development/python-modules/cucumber-tag-expressions { };
|
||||
|
||||
behave = callPackage ../development/python-modules/behave { };
|
||||
|
||||
bellows = callPackage ../development/python-modules/bellows { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user