forked from mirrors/nixpkgs
pythonPackages.distorm3: init at 3.3.4
This commit is contained in:
parent
08e450df46
commit
37bf3c8782
21
pkgs/development/python-modules/distorm3/default.nix
Normal file
21
pkgs/development/python-modules/distorm3/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, buildPythonPackage, fetchurl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "distorm3";
|
||||
version = "3.3.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/d/${pname}/${name}.zip";
|
||||
sha256 = "1bh9xdiz9mkf9lfffimfn3hgd0mh60y7wl1micgkxzpl7hnxrpd4";
|
||||
};
|
||||
|
||||
# no tests included
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Powerful Disassembler Library For x86/AMD64";
|
||||
homepage = https://github.com/gdabah/distorm;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -163,6 +163,8 @@ in {
|
|||
|
||||
discordpy = callPackage ../development/python-modules/discordpy { };
|
||||
|
||||
distorm3 = callPackage ../development/python-modules/distorm3 { };
|
||||
|
||||
h5py = callPackage ../development/python-modules/h5py {
|
||||
hdf5 = pkgs.hdf5;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue