Merge pull request #313219 from bcdarwin/python3-monai-upper-bound

python312Packages.monai: mark `disabled`
This commit is contained in:
OTABI Tomoya 2024-05-21 15:17:38 +09:00 committed by GitHub
commit 9d82d3e4af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pythonAtLeast
, ninja
, ignite
, numpy
@ -14,7 +15,8 @@ buildPythonPackage rec {
pname = "monai";
version = "1.3.0";
format = "setuptools";
disabled = pythonOlder "3.8";
# upper bound due to use of `distutils`; remove after next release:
disabled = pythonOlder "3.8" || pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "Project-MONAI";