Merge pull request #122966 from dotlambda/pydicom-aarch64

python3Packages.pydicom: disable failing tests on aarch64
This commit is contained in:
Martin Weinelt 2021-05-14 13:37:15 +02:00 committed by GitHub
commit 3464899979
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, isPy27
@ -49,6 +50,9 @@ buildPythonPackage {
# This test try to remove a dicom inside $HOME/.pydicom/data/ and download it again.
disabledTests = [
"test_fetch_data_files"
] ++ lib.optionals stdenv.isAarch64 [
# https://github.com/pydicom/pydicom/issues/1386
"test_array"
];
meta = with lib; {