From 166770817df5f260b1ace224eafece4209507239 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 9 Oct 2021 11:13:47 +0200 Subject: [PATCH] python3Packages.extractcode: disable failing test --- pkgs/development/python-modules/extractcode/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/extractcode/default.nix b/pkgs/development/python-modules/extractcode/default.nix index a39205f5aeea..c4f6ecc537bc 100644 --- a/pkgs/development/python-modules/extractcode/default.nix +++ b/pkgs/development/python-modules/extractcode/default.nix @@ -9,6 +9,7 @@ , pytestCheckHook , pytest-xdist }: + buildPythonPackage rec { pname = "extractcode"; version = "21.7.23"; @@ -36,7 +37,7 @@ buildPythonPackage rec { pytest-xdist ]; - # cli test tests the cli which we can't do until after install + # CLI test tests the cli which we can't do until after install disabledTestPaths = [ "tests/test_extractcode_cli.py" ]; @@ -45,6 +46,7 @@ buildPythonPackage rec { disabledTests = [ "test_uncompress_lz4_basic" "test_extract_tarlz4_basic" + "test_extract_rar_with_trailing_data" # tries to parse /boot/vmlinuz-*, which is not available in the nix sandbox "test_can_extract_qcow2_vm_image_as_tarball" "test_can_extract_qcow2_vm_image_not_as_tarball" @@ -56,7 +58,7 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "A mostly universal archive extractor using z7zip, libarchve, other libraries and the Python standard library for reliable archive extraction"; + description = "Universal archive extractor using z7zip, libarchve, other libraries and the Python standard library"; homepage = "https://github.com/nexB/extractcode"; license = licenses.asl20; maintainers = teams.determinatesystems.members;