lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.junitparser: 2.8.0 -> 3.2.0

wrvsrx fea1cb70 08f22084

+4 -9
+4 -9
pkgs/development/python-modules/junitparser/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - future, 6 5 glibcLocales, 7 6 lxml, 8 - unittestCheckHook, 7 + pytestCheckHook, 9 8 }: 10 9 11 10 buildPythonPackage rec { 12 11 pname = "junitparser"; 13 - version = "2.8.0"; 12 + version = "3.2.0"; 14 13 format = "setuptools"; 15 14 16 15 src = fetchFromGitHub { 17 16 owner = "weiwei"; 18 17 repo = "junitparser"; 19 18 rev = version; 20 - hash = "sha256-rhDP05GSWT4K6Z2ip8C9+e3WbvBJOwP0vctvANBs7cw="; 19 + hash = "sha256-efP9t5eto6bcjk33wpJmunLlPH7wUwAa6/OjjYG/fgM="; 21 20 }; 22 21 23 - propagatedBuildInputs = [ future ]; 24 - 25 22 nativeCheckInputs = [ 26 - unittestCheckHook 23 + pytestCheckHook 27 24 lxml 28 25 glibcLocales 29 26 ]; 30 - 31 - unittestFlagsArray = [ "-v" ]; 32 27 33 28 meta = with lib; { 34 29 description = "Manipulates JUnit/xUnit Result XML files";