Commit 453cd7b9 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.argostranslate: mark as broken on x86_64-darwin

parent 3ce60470
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  fetchPypi,
  pytestCheckHook,
@@ -54,10 +55,12 @@ buildPythonPackage rec {
    "argostranslate.translate"
  ];

  meta = with lib; {
  meta = {
    description = "Open-source offline translation library written in Python";
    homepage = "https://www.argosopentech.com";
    license = licenses.mit;
    maintainers = with maintainers; [ misuzu ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ misuzu ];
    # Segfaults at import
    broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64;
  };
}