3
0
Fork 0
forked from mirrors/nixpkgs

nibabel: remove failing test

One of the tests explicitly calls python, which will fail with python3.
The issue has been reported upstream,
https://github.com/nipy/nibabel/issues/341
For now, remove the test.

Fix also the license type.
This commit is contained in:
Frederik Rietdijk 2015-08-28 16:24:08 +02:00
parent b950ec8617
commit 2927f1a883

View file

@ -8406,11 +8406,17 @@ let
nose
modules.sqlite3
];
# Test does not work on Py3k because it calls 'python'.
# https://github.com/nipy/nibabel/issues/341
preCheck = ''
rm nisext/tests/test_testers.py
'';
meta = {
homepage = http://nipy.org/nibabel/;
description = "Access a multitude of neuroimaging data formats";
license = "BSD";
license = licenses.mit;
};
};