6 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
14 rev = "refs/tags/v${version}";
15 hash = "sha256-yO3k2kT043/KkiCjDnNUlqxX86kQqMZ+CghD+yon3r4=";
18 propagatedBuildInputs = with python3.pkgs; [
22 nativeCheckInputs = with python3.pkgs; [
27 # Prepare the YARA rules
28 ${python3.interpreter} prep-release.py
32 # We have dex support enabled in yara-python
33 substituteInPlace setup.py \
34 --replace "yara-python-dex>=1.0.1" "yara-python"
37 pythonImportsCheck = [
42 description = "Android Application Identifier";
43 mainProgram = "apkid";
44 homepage = "https://github.com/rednaga/APKiD";
45 license = with licenses; [ gpl3Only ];
46 maintainers = with maintainers; [ fab ];