biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / frida-tools / default.nix
blob36abd4ad5c68f83a99bd6a209ee0b1207ecb1194
1 { lib, fetchPypi, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "frida-tools";
5   version = "12.5.0";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-vlqBN0E+bpfx+TLliZ3hgCaeOEdMRP/rmAfkmjOTqyA=";
10   };
12   propagatedBuildInputs = with python3Packages; [
13     pygments
14     prompt-toolkit
15     colorama
16     frida-python
17   ];
19   meta = {
20     description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (client tools)";
21     homepage = "https://www.frida.re/";
22     maintainers = with lib.maintainers; [ s1341 ];
23     license = lib.licenses.wxWindows;
24   };