nixpkgs/pkgs/development/python-modules/bap/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
645 B
Nix
Raw Normal View History

{lib, buildPythonPackage, fetchFromGitHub, bap, requests}:
2017-01-25 08:14:40 +01:00
buildPythonPackage rec {
pname = "bap";
2018-03-01 18:10:41 +01:00
version = "1.3.1";
2017-01-25 08:14:40 +01:00
src = fetchFromGitHub {
owner = "BinaryAnalysisPlatform";
repo = "bap-python";
2019-09-09 01:38:31 +02:00
rev = version;
2018-03-01 18:10:41 +01:00
sha256 = "1ahkrmcn7qaivps1gar8wd9mq2qqyx6zzvznf5r9rr05h17x5lbp";
2017-01-25 08:14:40 +01:00
};
propagatedBuildInputs = [bap requests];
doCheck = false;
meta = with lib; {
2017-01-25 08:14:40 +01:00
description = "Platform for binary analysis. It is written in OCaml, but can be used from other languages.";
homepage = "https://github.com/BinaryAnalysisPlatform/bap/";
2017-01-25 08:14:40 +01:00
maintainers = [ maintainers.maurer ];
license = licenses.mit;
};
}