2019-01-17 19:25:35 +00:00
|
|
|
{ lib
|
2018-01-16 13:28:55 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-12-22 18:44:49 +00:00
|
|
|
, isPy27
|
2019-08-06 03:08:14 +01:00
|
|
|
, nose
|
2020-01-27 16:00:21 +00:00
|
|
|
, pytest
|
2019-08-06 03:08:14 +01:00
|
|
|
, numpy
|
2020-01-27 16:00:21 +00:00
|
|
|
, h5py
|
|
|
|
, pydicom
|
|
|
|
, scipy
|
2018-01-16 13:28:55 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nibabel";
|
2020-06-06 07:47:19 +01:00
|
|
|
version = "3.1.0";
|
2019-12-22 18:44:49 +00:00
|
|
|
disabled = isPy27;
|
2018-01-16 13:28:55 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:19 +01:00
|
|
|
sha256 = "774adcff834f22915afb68c6cdd7acbcb5d0240b7f87f6da6c63ff405480884b";
|
2018-01-16 13:28:55 +00:00
|
|
|
};
|
|
|
|
|
2020-01-27 16:00:21 +00:00
|
|
|
propagatedBuildInputs = [ numpy scipy h5py pydicom ];
|
2019-01-17 19:25:35 +00:00
|
|
|
|
2020-01-27 16:00:21 +00:00
|
|
|
checkInputs = [ nose pytest ];
|
2018-01-16 13:28:55 +00:00
|
|
|
|
2019-08-06 03:08:14 +01:00
|
|
|
checkPhase = ''
|
|
|
|
nosetests
|
2019-01-17 19:25:35 +00:00
|
|
|
'';
|
2018-01-16 13:28:55 +00:00
|
|
|
|
2019-01-17 19:25:35 +00:00
|
|
|
meta = with lib; {
|
2020-04-07 19:12:09 +01:00
|
|
|
homepage = "https://nipy.org/nibabel";
|
2018-01-16 13:28:55 +00:00
|
|
|
description = "Access a multitude of neuroimaging data formats";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ashgillman ];
|
2020-01-27 16:00:21 +00:00
|
|
|
platforms = platforms.x86_64; # https://github.com/nipy/nibabel/issues/861
|
2018-01-16 13:28:55 +00:00
|
|
|
};
|
|
|
|
}
|