nixpkgs/pkgs/development/python-modules/binsync/default.nix
Martin Weinelt da39414b1f python3Packages.binsync: 5.8.0 -> 5.11.0
https://github.com/binsync/binsync/releases/tag/v5.11.0

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:21 +01:00

70 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
filelock,
gitpython,
libbs,
prompt-toolkit,
pycparser,
pyside6,
pytest-qt,
pytestCheckHook,
setuptools,
sortedcontainers,
toml,
tqdm,
wordfreq,
}:
buildPythonPackage rec {
pname = "binsync";
version = "5.11.0";
pyproject = true;
src = fetchFromGitHub {
owner = "binsync";
repo = "binsync";
tag = "v${version}";
hash = "sha256-dRc/sF2eVCW1fX66PsF4xU1RbkSnn/sT/PFsRbvDpzY=";
};
build-system = [ setuptools ];
dependencies = [
filelock
gitpython
libbs
prompt-toolkit
pycparser
sortedcontainers
toml
tqdm
wordfreq
];
optional-dependencies = {
ghidra = [ pyside6 ];
};
nativeCheckInputs = [
pytestCheckHook
pytest-qt
pyside6
];
disabledTestPaths = [
# Test tries to import angr-management
"tests/test_angr_gui.py"
];
pythonImportsCheck = [ "binsync" ];
meta = {
description = "Reversing plugin for cross-decompiler collaboration, built on git";
homepage = "https://github.com/binsync/binsync";
changelog = "https://github.com/binsync/binsync/releases/tag/${src.tag}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ scoder12 ];
};
}