python311Packages.nose-xunitmp: init at 0.4.1

This commit is contained in:
Gaetan Lepage 2024-05-07 16:00:48 +02:00
parent 273fae3154
commit 7c34771121
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -8860,6 +8860,8 @@ self: super: with self; {
nose-warnings-filters = callPackage ../development/python-modules/nose-warnings-filters { };
nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };
nosexcover = callPackage ../development/python-modules/nosexcover { };
notebook = callPackage ../development/python-modules/notebook { };