depot/third_party/nixpkgs/pkgs/development/python-modules/bap/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

33 lines
694 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
bap,
requests,
}:
buildPythonPackage rec {
pname = "bap";
version = "1.3.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "BinaryAnalysisPlatform";
repo = "bap-python";
rev = version;
sha256 = "1ahkrmcn7qaivps1gar8wd9mq2qqyx6zzvznf5r9rr05h17x5lbp";
};
propagatedBuildInputs = [
bap
requests
];
doCheck = false;
meta = with lib; {
description = "Platform for binary analysis. It is written in OCaml, but can be used from other languages";
homepage = "https://github.com/BinaryAnalysisPlatform/bap/";
maintainers = [ maintainers.maurer ];
license = licenses.mit;
};
}