summary refs log tree commit diff
path: root/pkgs/development/python-modules/distorm3/default.nix
blob: e9b8e66d4c990aeca7997344fde2e4307298944d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "distorm3";
  version = "3.3.4";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "1bh9xdiz9mkf9lfffimfn3hgd0mh60y7wl1micgkxzpl7hnxrpd4";
  };

  # no tests included
  doCheck = false;

  meta = with lib; {
    description = "Powerful Disassembler Library For x86/AMD64";
    homepage = "https://github.com/gdabah/distorm";
    license = licenses.bsd3;
  };
}