about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/nose2/default.nix
blob: 28dd8df3e263d30726bc653538c3e71d6d9af228 (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
50
51
52
53
54
55
56
57
58
59
60
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder

# build-system
, setuptools

# optional-dependencies
, coverage

# tests
, unittestCheckHook
}:

buildPythonPackage rec {
  pname = "nose2";
  version = "0.14.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-XCjXcKC5pwKGK9bDdVuizS95lN1RjJguXOKY1/N0ZqQ=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  passthru.optional-dependencies = {
    coverage = [
      coverage
    ];
  };

  pythonImportsCheck = [
    "nose2"
  ];

  __darwinAllowLocalNetworking = true;

  nativeCheckInputs = [
    unittestCheckHook
  ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);

  preCheck = ''
    # https://github.com/nose-devs/nose2/issues/588
    substituteInPlace nose2/tests/functional/test_junitxml_plugin.py \
      --replace "test_skip_reason_in_message" "dont_test_skip_reason_in_message"
  '';

  meta = with lib; {
    description = "Test runner for Python";
    homepage = "https://github.com/nose-devs/nose2";
    license = licenses.bsd0;
    maintainers = with maintainers; [ ];
  };
}