pythonPackages.pytest-bdd: init at 3.2.1

This commit is contained in:
José Miguel 2019-11-01 21:23:04 +00:00 committed by Jon
parent 670cd1092e
commit 38d945f4b6
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
, execnet
, glob2
, Mako
, mock
, parse
, parse-type
, py
, pytest
, six
}:
buildPythonPackage rec {
pname = "pytest-bdd";
version = "3.2.1";
# tests are not included in pypi tarball
src = fetchFromGitHub {
owner = "pytest-dev";
repo = pname;
rev = version;
sha256 = "02y28l5h1m9grj54p681qvv7nrhd7ly9jkqdchyw4p0lnmcmnsrd";
};
propagatedBuildInputs = [ glob2 Mako parse parse-type py pytest six ];
# Tests require extra dependencies
checkInputs = [ execnet mock pytest ];
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
description = "BDD library for the py.test runner";
homepage = https://github.com/pytest-dev/pytest-bdd;
license = licenses.mit;
maintainers = with maintainers; [ jm2dev ];
};
}

View File

@ -1138,6 +1138,8 @@ in {
pytesseract = callPackage ../development/python-modules/pytesseract { };
pytest-bdd = callPackage ../development/python-modules/pytest-bdd { };
pytest-black = callPackage ../development/python-modules/pytest-black { };
pytest-click = callPackage ../development/python-modules/pytest-click { };