about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2021-05-14 13:37:15 +0200
committerGitHub <noreply@github.com>2021-05-14 13:37:15 +0200
commit3464899979667a7e9075147c25da52451f010511 (patch)
tree4b4ecacdb25c4cf8536aa715ede9b060c18393b2
parentb4ff1c052ce7fb850ff40f4307311c4b1395f97c (diff)
parentae6997cf97c5ff1b89f6f2377160e6913363416a (diff)
Merge pull request #122966 from dotlambda/pydicom-aarch64
python3Packages.pydicom: disable failing tests on aarch64
-rw-r--r--pkgs/development/python-modules/pydicom/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pydicom/default.nix b/pkgs/development/python-modules/pydicom/default.nix
index be3cddc7c14a5..2cb89812ea5d4 100644
--- a/pkgs/development/python-modules/pydicom/default.nix
+++ b/pkgs/development/python-modules/pydicom/default.nix
@@ -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; {