pythonPackages.pytest-bdd: init at 3.2.1
This commit is contained in:
parent
670cd1092e
commit
38d945f4b6
39
pkgs/development/python-modules/pytest-bdd/default.nix
Normal file
39
pkgs/development/python-modules/pytest-bdd/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1138,6 +1138,8 @@ in {
|
|||||||
|
|
||||||
pytesseract = callPackage ../development/python-modules/pytesseract { };
|
pytesseract = callPackage ../development/python-modules/pytesseract { };
|
||||||
|
|
||||||
|
pytest-bdd = callPackage ../development/python-modules/pytest-bdd { };
|
||||||
|
|
||||||
pytest-black = callPackage ../development/python-modules/pytest-black { };
|
pytest-black = callPackage ../development/python-modules/pytest-black { };
|
||||||
|
|
||||||
pytest-click = callPackage ../development/python-modules/pytest-click { };
|
pytest-click = callPackage ../development/python-modules/pytest-click { };
|
||||||
|
Loading…
Reference in New Issue
Block a user