Commit de7d5d6a authored by Ben Darwin's avatar Ben Darwin
Browse files

python313Packages.monai-deploy: mark broken

Package was broken in a recent mass update as it depends on NVIDIA holoscan and holoscan-cli, which are not in Nixpkgs.
Reverting also seems suboptimal as the previously working version of MONAI Deploy is quite dated.
parent eab13d8e
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@
  pytestCheckHook,
  pythonOlder,
  setuptools,
  tritonclient,
  typeguard,
  versioneer,
}:
@@ -18,8 +19,6 @@ buildPythonPackage rec {
  version = "3.0.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "Project-MONAI";
    repo = "monai-deploy-app-sdk";
@@ -43,6 +42,7 @@ buildPythonPackage rec {
    numpy
    networkx
    colorama
    tritonclient
    typeguard
  ];

@@ -64,12 +64,13 @@ buildPythonPackage rec {
    # like highdicom and pydicom
  ];

  meta = with lib; {
  meta = {
    description = "Framework and tools to design, develop and verify AI applications in healthcare imaging";
    mainProgram = "monai-deploy";
    homepage = "https://monai.io/deploy.html";
    changelog = "https://github.com/Project-MONAI/monai-deploy-app-sdk/blob/main/docs/source/release_notes/${src.tag}.md";
    license = licenses.asl20;
    maintainers = with maintainers; [ bcdarwin ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ bcdarwin ];
    broken = true; # requires holoscan and holoscan-cli, not in Nixpkgs
  };
}