1 { lib, buildPythonPackage, fetchFromGitHub
13 buildPythonPackage rec {
17 # tests are not included in pypi tarball
18 src = fetchFromGitHub {
22 sha256 = "1yqzz44as4pxffmg4hk9lijvnvlc2chg1maq1fbj5i4k4jpagvjz";
25 buildInputs = [ pytest ];
27 propagatedBuildInputs = [ glob2 Mako parse parse-type py six ];
29 # Tests require extra dependencies
30 checkInputs = [ execnet mock pytest ];
32 PATH=$PATH:$out/bin pytest
36 description = "BDD library for the py.test runner";
37 homepage = "https://github.com/pytest-dev/pytest-bdd";
38 license = licenses.mit;
39 maintainers = with maintainers; [ jm2dev ];