python3Packages.cucumber-tag-expressions: init at 3.0.0

This commit is contained in:
Maxim Krivchikov 2020-08-21 19:49:56 +03:00 committed by Jon
parent 798672d6fa
commit 2126015ad4
2 changed files with 23 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -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 { };