7 python3.pkgs.buildPythonApplication rec {
10 format = "setuptools";
12 src = fetchFromGitHub {
16 hash = "sha256-yO3k2kT043/KkiCjDnNUlqxX86kQqMZ+CghD+yon3r4=";
19 propagatedBuildInputs = with python3.pkgs; [
23 nativeCheckInputs = with python3.pkgs; [
28 # Prepare the YARA rules
29 ${python3.interpreter} prep-release.py
33 # We have dex support enabled in yara-python
34 substituteInPlace setup.py \
35 --replace "yara-python-dex>=1.0.1" "yara-python"
38 pythonImportsCheck = [
43 description = "Android Application Identifier";
44 mainProgram = "apkid";
45 homepage = "https://github.com/rednaga/APKiD";
46 license = with licenses; [ gpl3Only ];
47 maintainers = with maintainers; [ fab ];