at 17.09-beta 691 B view raw
1{stdenv, buildPythonPackage, fetchFromGitHub, bap, requests}: 2 3buildPythonPackage rec { 4 pname = "bap"; 5 version = "1.1.0"; 6 name = "${pname}-${version}"; 7 src = fetchFromGitHub { 8 owner = "BinaryAnalysisPlatform"; 9 repo = "bap-python"; 10 rev = "v${version}"; 11 sha256 = "0wd46ksxscgb2dci69sbndzxs6drq5cahraqq42cdk114hkrsxs3"; 12 }; 13 14 propagatedBuildInputs = [bap requests]; 15 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Platform for binary analysis. It is written in OCaml, but can be used from other languages."; 20 homepage = https://github.com/BinaryAnalysisPlatform/bap/; 21 maintainers = [ maintainers.maurer ]; 22 license = licenses.mit; 23 }; 24}