1{ lib, buildPythonPackage, fetchPypi, future, networkx, pygments, lxml, colorama, matplotlib,
2 asn1crypto, click, pydot, ipython, pyqt5, pyperclip }:
3
4buildPythonPackage rec {
5 version = "3.3.5";
6 pname = "androguard";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "f0655ca3a5add74c550951e79bd0bebbd1c5b239178393d30d8db0bd3202cda2";
11 };
12
13 propagatedBuildInputs = [
14 future
15 networkx
16 pygments
17 lxml
18 colorama
19 matplotlib
20 asn1crypto
21 click
22 pydot
23 ipython
24 pyqt5
25 pyperclip
26 ];
27
28 # Tests are not shipped on PyPI.
29 doCheck = false;
30
31 meta = {
32 description = "Tool and python library to interact with Android Files";
33 homepage = https://github.com/androguard/androguard;
34 license = lib.licenses.asl20;
35 maintainers = [ lib.maintainers.pmiddend ];
36 };
37}