2022-08-21 13:32:41 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonOlder
|
|
|
|
, ninja
|
|
|
|
, ignite
|
|
|
|
, numpy
|
|
|
|
, pybind11
|
2022-09-09 14:08:57 +00:00
|
|
|
, torch
|
2022-08-21 13:32:41 +00:00
|
|
|
, which
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "monai";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "1.3.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-07-15 17:15:38 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Project-MONAI";
|
|
|
|
repo = "MONAI";
|
2022-10-06 18:32:54 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2023-10-19 13:55:26 +00:00
|
|
|
hash = "sha256-h//igmSV1cPAFifE1woIluSyGwZBRByYMLqeY3oLHnk=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Ninja is not detected by setuptools for some reason even though it's present:
|
|
|
|
postPatch = ''
|
2023-01-20 10:41:00 +00:00
|
|
|
substituteInPlace "setup.cfg" --replace " ninja" ""
|
2022-08-21 13:32:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export MAX_JOBS=$NIX_BUILD_CORES;
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ ninja which ];
|
|
|
|
buildInputs = [ pybind11 ];
|
2022-09-09 14:08:57 +00:00
|
|
|
propagatedBuildInputs = [ numpy torch ignite ];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
BUILD_MONAI = 1;
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
doCheck = false; # takes too long; tries to download data
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"monai"
|
|
|
|
"monai.apps"
|
|
|
|
"monai.data"
|
|
|
|
"monai.engines"
|
|
|
|
"monai.handlers"
|
|
|
|
"monai.inferers"
|
|
|
|
"monai.losses"
|
|
|
|
"monai.metrics"
|
|
|
|
"monai.optimizers"
|
|
|
|
"monai.networks"
|
|
|
|
"monai.transforms"
|
|
|
|
"monai.utils"
|
|
|
|
"monai.visualize"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Pytorch framework (based on Ignite) for deep learning in medical imaging";
|
|
|
|
homepage = "https://github.com/Project-MONAI/MONAI";
|
2023-07-15 17:15:38 +00:00
|
|
|
changelog = "https://github.com/Project-MONAI/MONAI/releases/tag/${version}";
|
2022-08-21 13:32:41 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
|
|
};
|
|
|
|
}
|