1 { buildPythonPackage, lib, lxml, click, fetchFromGitHub, pytestCheckHook, asn1crypto }:
3 buildPythonPackage rec {
6 pname = "pyaxmlparser";
8 src = fetchFromGitHub {
12 hash = "sha256-NtAsO/I1jDEv676yhAgLguQnB/kHdAqPoLt2QFWbvmw=";
15 propagatedBuildInputs = [ asn1crypto click lxml ];
17 nativeCheckInputs = [ pytestCheckHook ];
20 description = "Python3 Parser for Android XML file and get Application Name without using Androguard";
21 mainProgram = "apkinfo";
22 homepage = "https://github.com/appknox/pyaxmlparser";
23 # Files from Androguard are licensed ASL 2.0
24 license = with licenses; [ mit asl20 ];
25 maintainers = with maintainers; [ ];