1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{
stdenv,
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
deprecated,
humanize,
matplotlib,
nibabel,
numpy,
parameterized,
scipy,
simpleitk,
torch,
tqdm,
typer,
}:
buildPythonPackage rec {
pname = "torchio";
version = "0.19.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "fepegar";
repo = "torchio";
rev = "refs/tags/v${version}";
hash = "sha256-FlsjDgthXDGVjj4L0Yw+8UzBROw9jiM4Z+qi67D5ygU=";
};
propagatedBuildInputs = [
deprecated
humanize
nibabel
numpy
scipy
simpleitk
torch
tqdm
typer
];
nativeCheckInputs = [
pytestCheckHook
matplotlib
parameterized
];
disabledTests =
[
# tries to download models:
"test_load_all"
]
++ lib.optionals stdenv.hostPlatform.isAarch64 [
# RuntimeError: DataLoader worker (pid(s) <...>) exited unexpectedly
"test_queue_multiprocessing"
];
pythonImportsCheck = [
"torchio"
"torchio.data"
];
meta = with lib; {
description = "Medical imaging toolkit for deep learning";
homepage = "https://torchio.readthedocs.io";
license = licenses.asl20;
maintainers = [ maintainers.bcdarwin ];
};
}
|