summary refs log tree commit diff
path: root/pkgs/development/python-modules/extractcode
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-10-09 11:13:47 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-10-09 11:13:47 +0200
commit166770817df5f260b1ace224eafece4209507239 (patch)
treea0f8f11d27ec23e3b64bdd8a24a4ebcdc8b73eab /pkgs/development/python-modules/extractcode
parent65fe62e0205e941d3be226ff5dee3aae00c00c08 (diff)
downloadnixpkgs-166770817df5f260b1ace224eafece4209507239.tar
nixpkgs-166770817df5f260b1ace224eafece4209507239.tar.gz
nixpkgs-166770817df5f260b1ace224eafece4209507239.tar.bz2
nixpkgs-166770817df5f260b1ace224eafece4209507239.tar.lz
nixpkgs-166770817df5f260b1ace224eafece4209507239.tar.xz
nixpkgs-166770817df5f260b1ace224eafece4209507239.tar.zst
nixpkgs-166770817df5f260b1ace224eafece4209507239.zip
python3Packages.extractcode: disable failing test
Diffstat (limited to 'pkgs/development/python-modules/extractcode')
-rw-r--r--pkgs/development/python-modules/extractcode/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/extractcode/default.nix b/pkgs/development/python-modules/extractcode/default.nix
index a39205f5aee..c4f6ecc537b 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;