python3Packages.junitparser: 2.8.0 -> 3.2.0

wrvsrx fea1cb70 08f22084

Changed files
+4 -9
pkgs
development
python-modules
junitparser
+4 -9
pkgs/development/python-modules/junitparser/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
future,
glibcLocales,
lxml,
-
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "junitparser";
-
version = "2.8.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "weiwei";
repo = "junitparser";
rev = version;
-
hash = "sha256-rhDP05GSWT4K6Z2ip8C9+e3WbvBJOwP0vctvANBs7cw=";
};
-
propagatedBuildInputs = [ future ];
-
nativeCheckInputs = [
-
unittestCheckHook
lxml
glibcLocales
];
-
-
unittestFlagsArray = [ "-v" ];
meta = with lib; {
description = "Manipulates JUnit/xUnit Result XML files";
···
lib,
buildPythonPackage,
fetchFromGitHub,
glibcLocales,
lxml,
+
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "junitparser";
+
version = "3.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "weiwei";
repo = "junitparser";
rev = version;
+
hash = "sha256-efP9t5eto6bcjk33wpJmunLlPH7wUwAa6/OjjYG/fgM=";
};
nativeCheckInputs = [
+
pytestCheckHook
lxml
glibcLocales
];
meta = with lib; {
description = "Manipulates JUnit/xUnit Result XML files";