blob: d716d6eca5f12c72b78ba56698fa8b03dd57ae5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
buildPythonPackage,
lib,
lxml,
click,
fetchFromGitHub,
pytestCheckHook,
asn1crypto,
}:
buildPythonPackage rec {
version = "0.3.31";
format = "setuptools";
pname = "pyaxmlparser";
src = fetchFromGitHub {
owner = "appknox";
repo = "pyaxmlparser";
rev = "v${version}";
hash = "sha256-ZV2PyWQfK9xidzGUz7XPAReaVjlB8tMUKQiXoGcFCGs=";
};
propagatedBuildInputs = [
asn1crypto
click
lxml
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Python3 Parser for Android XML file and get Application Name without using Androguard";
mainProgram = "apkinfo";
homepage = "https://github.com/appknox/pyaxmlparser";
# Files from Androguard are licensed ASL 2.0
license = with lib.licenses; [
mit
asl20
];
maintainers = [ ];
};
}
|