Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / bap / default.nix
bloba3316b8651f52a5f68f12ee05f68506339dca9a1
1 {lib, buildPythonPackage, fetchFromGitHub, bap, requests}:
3 buildPythonPackage rec {
4   pname = "bap";
5   version = "1.3.1";
6   format = "setuptools";
7   src = fetchFromGitHub {
8     owner = "BinaryAnalysisPlatform";
9     repo = "bap-python";
10     rev = version;
11     sha256 = "1ahkrmcn7qaivps1gar8wd9mq2qqyx6zzvznf5r9rr05h17x5lbp";
12   };
14   propagatedBuildInputs = [bap requests];
16   doCheck = false;
18   meta = with 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   };