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
|
2020-07-23 01:06:19 +01:00
|
|
|
, packaging
|
2020-01-27 16:00:21 +00:00
|
|
|
, pytest
|
2020-07-05 22:11:32 +01:00
|
|
|
, nose
|
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-12-03 19:25:20 +00:00
|
|
|
version = "3.2.1";
|
2019-12-22 18:44:49 +00:00
|
|
|
disabled = isPy27;
|
2018-01-16 13:28:55 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-03 19:25:20 +00:00
|
|
|
sha256 = "4d2ff9426b740011a1c916b54fc25da9348282e727eaa2ea163f42e00f1fc29e";
|
2018-01-16 13:28:55 +00:00
|
|
|
};
|
|
|
|
|
2020-07-23 01:06:19 +01:00
|
|
|
propagatedBuildInputs = [ numpy scipy h5py packaging 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 = ''
|
2020-07-05 22:11:32 +01:00
|
|
|
pytest
|
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 ];
|
|
|
|
};
|
|
|
|
}
|