Merge pull request #180832 from fabaff/extractcode-fix

python310Packages.extractcode: disable failing test
This commit is contained in:
Fabian Affolter 2022-07-09 14:15:43 +02:00 committed by GitHub
commit 598ae3bb74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,15 +8,19 @@
, extractcode-7z , extractcode-7z
, pytestCheckHook , pytestCheckHook
, pytest-xdist , pytest-xdist
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "extractcode"; pname = "extractcode";
version = "31.0.0"; version = "31.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-gIGTkum8+BKfdNiQT+ipjA3+0ngjVoQnNygsAoMRPYg="; hash = "sha256-gIGTkum8+BKfdNiQT+ipjA3+0ngjVoQnNygsAoMRPYg=";
}; };
dontConfigure = true; dontConfigure = true;
@ -51,6 +55,7 @@ buildPythonPackage rec {
"test_can_extract_qcow2_vm_image_as_tarball" "test_can_extract_qcow2_vm_image_as_tarball"
"test_can_extract_qcow2_vm_image_not_as_tarball" "test_can_extract_qcow2_vm_image_not_as_tarball"
"test_can_listfs_from_qcow2_image" "test_can_listfs_from_qcow2_image"
"test_get_extractor_qcow2"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [