Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1021 B
Nix
53 lines
1021 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
nibabel,
|
|
pydicom,
|
|
pylibjpeg,
|
|
pint,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "dcmstack";
|
|
version = "0.9-unstable-2024-12-05";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moloney";
|
|
repo = "dcmstack";
|
|
rev = "68575996c8956152865e3598b15f621d7c803a96";
|
|
hash = "sha256-QXnBtlXkxYDJFdjiqCoEuBMcHnq+87YmHX8j5EPW7HU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
nibabel
|
|
pydicom
|
|
pylibjpeg
|
|
pint
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "dcmstack" ];
|
|
|
|
disabledTestPaths = [
|
|
# AttributeError: 'TestNitoolCli' object has no attribute 'out_dir'
|
|
"test/test_cli.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "DICOM to Nifti conversion preserving metadata";
|
|
homepage = "https://github.com/moloney/dcmstack";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|