1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 wheel,
7 nose,
8}:
9
10buildPythonPackage rec {
11 pname = "nose-xunitmp";
12 version = "0.4.1";
13 pyproject = true;
14
15 src = fetchPypi {
16 pname = "nose_xunitmp";
17 inherit version;
18 hash = "sha256-wt9y9HYHUdMBU9Rzgiqr8afD1GL2ZKp/f9uNxibcfEA=";
19 };
20
21 build-system = [
22 setuptools
23 wheel
24 ];
25
26 dependencies = [ nose ];
27
28 pythonImportsCheck = [ "nose_xunitmp" ];
29
30 meta = {
31 description = "Xunit output when running multiprocess tests using nose";
32 homepage = "https://pypi.org/project/nose_xunitmp/";
33 license = lib.licenses.mit;
34 maintainers = with lib.maintainers; [ GaetanLepage ];
35 };
36}