Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 509 B view raw
1{ stdenv, buildPythonPackage, fetchurl }: 2 3buildPythonPackage rec { 4 pname = "distorm3"; 5 version = "3.3.4"; 6 name = "${pname}-${version}"; 7 8 src = fetchurl { 9 url = "mirror://pypi/d/${pname}/${name}.zip"; 10 sha256 = "1bh9xdiz9mkf9lfffimfn3hgd0mh60y7wl1micgkxzpl7hnxrpd4"; 11 }; 12 13 # no tests included 14 doCheck = false; 15 16 meta = with stdenv.lib; { 17 description = "Powerful Disassembler Library For x86/AMD64"; 18 homepage = https://github.com/gdabah/distorm; 19 license = licenses.bsd3; 20 }; 21}