summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-bdd/default.nix
blob: 493a2307e7e7ecd2b916060992bd8589cc0580fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib, stdenv, buildPythonPackage, fetchFromGitHub
, execnet
, glob2
, Mako
, mock
, parse
, parse-type
, py
, pytest
, six
}:

buildPythonPackage rec {
  pname = "pytest-bdd";
  version = "4.0.1";

  # tests are not included in pypi tarball
  src = fetchFromGitHub {
    owner = "pytest-dev";
    repo = pname;
    rev = version;
    sha256 = "1yqzz44as4pxffmg4hk9lijvnvlc2chg1maq1fbj5i4k4jpagvjz";
  };

  propagatedBuildInputs = [ glob2 Mako parse parse-type py pytest six ];

  # Tests require extra dependencies
  checkInputs = [ execnet mock pytest ];
  checkPhase = ''
    PATH=$PATH:$out/bin pytest
  '';

  meta = with lib; {
    description = "BDD library for the py.test runner";
    homepage = "https://github.com/pytest-dev/pytest-bdd";
    license = licenses.mit;
    maintainers = with maintainers; [ jm2dev ];
  };
}