about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-json-report/default.nix
blob: 2b89fe715921b73a0dcdb561aee2392bf6bb97f4 (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
40
41
42
43
44
45
46
47
48
49
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, pytest-metadata
, pytest-xdist
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pytest-json-report";
  version = "1.4.1";

  src = fetchFromGitHub {
    owner = "numirias";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-OS9ASUp9iJ12Ovr931RQU/DHEAXqbgcRMCBP4h+GAhk=";
  };

  buildInputs = [
    pytest
  ];

  propagatedBuildInputs = [
    pytest-metadata
  ];

  checkInputs = [
    pytest-xdist
    pytestCheckHook
  ];

  disabledTests = [
    # pytest-flaky is not available at the moment
    "test_bug_31"
  ];

  pythonImportsCheck = [
    "pytest_jsonreport"
  ];

  meta = with lib; {
    description = "Pytest plugin to report test results as JSON";
    homepage = "https://github.com/numirias/pytest-json-report";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}