2021-04-05 03:51:43 +01:00
|
|
|
{ buildPythonPackage, lib, lxml, click, fetchFromGitHub, pytestCheckHook, asn1crypto }:
|
2018-03-10 23:09:11 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-04-05 03:51:43 +01:00
|
|
|
version = "0.3.26";
|
2018-03-10 23:09:11 +00:00
|
|
|
pname = "pyaxmlparser";
|
|
|
|
|
2018-12-23 21:56:58 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "appknox";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-04-05 03:51:43 +01:00
|
|
|
sha256 = "sha256-wD0rN00q4ipKnKubptrgrjNwkBpqsA+ix2xedOOr8Yg=";
|
2018-03-10 23:09:11 +00:00
|
|
|
};
|
|
|
|
|
2021-04-05 03:51:43 +01:00
|
|
|
propagatedBuildInputs = [ asn1crypto click lxml ];
|
2018-12-23 21:56:58 +00:00
|
|
|
|
2021-04-05 03:51:43 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2018-12-23 21:56:58 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-10 23:09:11 +00:00
|
|
|
description = "Python3 Parser for Android XML file and get Application Name without using Androguard";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/appknox/pyaxmlparser";
|
2019-01-20 01:58:54 +00:00
|
|
|
# Files from Androguard are licensed ASL 2.0
|
|
|
|
license = with licenses; [ mit asl20 ];
|
2021-01-01 13:39:41 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-03-10 23:09:11 +00:00
|
|
|
};
|
|
|
|
}
|