mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.nibabel: 2.0.1 -> 2.0.2
This commit is contained in:
parent
9f34475f93
commit
c350b6acc6
1 changed files with 6 additions and 13 deletions
|
@ -12801,12 +12801,12 @@ in modules // {
|
|||
});
|
||||
|
||||
nibabel = buildPythonPackage rec {
|
||||
version = "2.0.1";
|
||||
version = "2.0.2";
|
||||
name = "nibabel-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://pypi.python.org/packages/source/n/nibabel/${name}.tar.gz";
|
||||
sha256 = "e559bcb40ae395c7f75c51079f815a13a94cd8a035a47315fc9fba0d2ae2ecaf";
|
||||
sha256 = "0k8mv5zmwb6vc8kwrydl3pp0pnw937rf5mz10figkxczrw6dkk7h";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [
|
||||
|
@ -12815,17 +12815,10 @@ in modules // {
|
|||
modules.sqlite3
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
# Test does not work on Py3k because it calls 'python'.
|
||||
# https://github.com/nipy/nibabel/issues/341
|
||||
rm nisext/tests/test_testers.py
|
||||
# Test fails with numpy 1.10.1: ERROR: nibabel.tests.test_proxy_api.TestPARRECAPI.test_proxy_slicing
|
||||
# See https://github.com/nipy/nibabel/pull/358
|
||||
# and https://github.com/numpy/numpy/issues/6491
|
||||
rm nibabel/tests/test_proxy_api.py
|
||||
# https://github.com/nipy/nibabel/issues/366
|
||||
rm nisext/tests/test_doctest_markup.py
|
||||
'';
|
||||
# Failing tests
|
||||
# nibabel.tests.test_minc1.test_old_namespace
|
||||
# nisext.tests.test_testers.test_back_tick
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = http://nipy.org/nibabel/;
|
||||
|
|
Loading…
Reference in a new issue