about summary refs log tree commit diff
path: root/pkgs/development/python-modules/nose-xunitmp/default.nix
blob: ee344b2e07ca1f518d2f349a5fffc84301b1aba8 (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
, buildPythonPackage
, fetchPypi
, setuptools
, wheel
, nose
}:

buildPythonPackage rec {
  pname = "nose-xunitmp";
  version = "0.4.1";
  pyproject = true;

  src = fetchPypi {
    pname = "nose_xunitmp";
    inherit version;
    hash = "sha256-wt9y9HYHUdMBU9Rzgiqr8afD1GL2ZKp/f9uNxibcfEA=";
  };

  build-system = [
    setuptools
    wheel
  ];

  dependencies = [
    nose
  ];

  pythonImportsCheck = [
    "nose_xunitmp"
  ];

  meta = {
    description = "Xunit output when running multiprocess tests using nose";
    homepage = "https://pypi.org/project/nose_xunitmp/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}