pythonPackages.androguard: init at 3.3.3

This commit is contained in:
Philipp Middendorf 2019-01-28 15:37:01 +01:00
parent 48377df063
commit cdc3ee316f
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib, buildPythonPackage, fetchPypi, future, networkx, pygments, lxml, colorama, matplotlib,
asn1crypto, click, pydot, ipython, pyqt5, pyperclip }:
buildPythonPackage rec {
version = "3.3.3";
pname = "androguard";
src = fetchPypi {
inherit pname version;
sha256 = "1zlmn3byh2whg7k2xmcd7yy43lcawhryjnzcxr9bhn54709b6iyd";
};
propagatedBuildInputs = [
future
networkx
pygments
lxml
colorama
matplotlib
asn1crypto
click
pydot
ipython
pyqt5
pyperclip
];
# Tests are not shipped on PyPI.
doCheck = false;
meta = {
description = "Tool and python library to interact with Android Files";
homepage = https://github.com/androguard/androguard;
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.pmiddend ];
};
}

View file

@ -158,6 +158,8 @@ in {
alerta-server = callPackage ../development/python-modules/alerta-server { };
androguard = callPackage ../development/python-modules/androguard { };
phonenumbers = callPackage ../development/python-modules/phonenumbers { };
agate-excel = callPackage ../development/python-modules/agate-excel { };