Merge pull request #180832 from fabaff/extractcode-fix
python310Packages.extractcode: disable failing test
This commit is contained in:
commit
598ae3bb74
1 changed files with 6 additions and 1 deletions
|
@ -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 = [
|
||||||
|
|
Loading…
Reference in a new issue