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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
deprecated,
matplotlib,
nibabel,
numpy,
packaging,
rich,
scipy,
simpleitk,
torch,
tqdm,
typer,
# tests
humanize,
parameterized,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "torchio";
version = "0.20.4";
pyproject = true;
src = fetchFromGitHub {
owner = "fepegar";
repo = "torchio";
tag = "v${version}";
hash = "sha256-pcUc0pnpb3qQLMOYU9yh7cljyCQ+Ngf8fJDcrRrK8LQ=";
};
build-system = [
hatchling
];
dependencies = [
deprecated
humanize
nibabel
numpy
packaging
rich
scipy
simpleitk
torch
tqdm
typer
];
nativeCheckInputs = [
matplotlib
parameterized
pytestCheckHook
];
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 = {
description = "Medical imaging toolkit for deep learning";
homepage = "https://torchio.readthedocs.io";
changelog = "https://github.com/TorchIO-project/torchio/blob/v${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.bcdarwin ];
};
}
|