Commit efb82962 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.libbs: enable tests

parent cea70513
Loading
Loading
Loading
Loading
+21 −8
Original line number Diff line number Diff line
@@ -10,10 +10,11 @@
  psutil,
  pycparser,
  pyhidra,
  pytestCheckHook,
  setuptools,
  toml,
  tqdm,
  wheel,
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
@@ -31,23 +32,35 @@ buildPythonPackage rec {
  build-system = [ setuptools ];

  dependencies = [
    toml
    pycparser
    prompt-toolkit
    tqdm
    jfx-bridge
    filelock
    ghidra-bridge
    jfx-bridge
    platformdirs
    prompt-toolkit
    psutil
    pycparser
    pyhidra
    platformdirs
    filelock
    toml
    tqdm
  ];

  nativeCheckInputs = [
    pytestCheckHook
    writableTmpDirAsHomeHook
  ];

  pythonImportsCheck = [ "libbs" ];

  disabledTests = [
    "test_change_watcher_plugin_cli"
    "test_ghidra_artifact_watchers"
    "TestHeadlessInterfaces"
  ];

  meta = {
    description = "Library for writing plugins in any decompiler: includes API lifting, common data formatting, and GUI abstraction";
    homepage = "https://github.com/binsync/libbs";
    changelog = "https://github.com/binsync/libbs/releases/tag/${src.tag}";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ scoder12 ];
  };