summary refs log tree commit diff
path: root/pkgs/development/python-modules/androguard/default.nix
blob: 7525df60575ba0dc9ba17f93fa7c5179384a10d9 (plain) (blame)
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
{ lib, buildPythonPackage, fetchPypi, future, networkx, pygments, lxml, colorama, matplotlib,
  asn1crypto, click, pydot, ipython, pyqt5, pyperclip }:

buildPythonPackage rec {
  version = "3.3.5";
  pname = "androguard";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f0655ca3a5add74c550951e79bd0bebbd1c5b239178393d30d8db0bd3202cda2";
  };

  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 ];
  };
}