bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
76 lines
1.3 KiB
Nix
76 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
datalad,
|
|
dcm2niix,
|
|
dcmstack,
|
|
etelemetry,
|
|
fetchPypi,
|
|
filelock,
|
|
git,
|
|
nibabel,
|
|
nipype,
|
|
pydicom,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
versioningit,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "heudiconv";
|
|
version = "1.1.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-hCHG5zpoEx4w7Jq842RWwMtsn5NskPq/Wahp4neOun4=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "versioningit ~=" "versioningit >="
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
versioningit
|
|
];
|
|
|
|
dependencies = [
|
|
dcmstack
|
|
etelemetry
|
|
filelock
|
|
nibabel
|
|
nipype
|
|
pydicom
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
datalad
|
|
dcm2niix
|
|
pytestCheckHook
|
|
git
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
pythonImportsCheck = [ "heudiconv" ];
|
|
|
|
disabledTests = [
|
|
# No such file or directory
|
|
"test_bvals_are_zero"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Flexible DICOM converter for organizing imaging data";
|
|
homepage = "https://heudiconv.readthedocs.io";
|
|
changelog = "https://github.com/nipy/heudiconv/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|