1{ buildPythonPackage, lib, lxml, click, fetchFromGitHub, pytestCheckHook, asn1crypto }:
2
3buildPythonPackage rec {
4 version = "0.3.27";
5 pname = "pyaxmlparser";
6
7 src = fetchFromGitHub {
8 owner = "appknox";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-NtAsO/I1jDEv676yhAgLguQnB/kHdAqPoLt2QFWbvmw=";
12 };
13
14 propagatedBuildInputs = [ asn1crypto click lxml ];
15
16 checkInputs = [ pytestCheckHook ];
17
18 meta = with lib; {
19 description = "Python3 Parser for Android XML file and get Application Name without using Androguard";
20 homepage = "https://github.com/appknox/pyaxmlparser";
21 # Files from Androguard are licensed ASL 2.0
22 license = with licenses; [ mit asl20 ];
23 maintainers = with maintainers; [ SuperSandro2000 ];
24 };
25}