blob: f158daa44913b15450739c2ea2ada50550c66e8b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
fetchPypi,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "frida-tools";
version = "14.4.5";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-sId91KB2qLasJHsfrS6Nfqctn0kCPS6ieNwtfheai8M=";
};
build-system = with python3Packages; [
setuptools
];
pythonRelaxDeps = [
"frida"
"websockets"
];
dependencies = with python3Packages; [
pygments
prompt-toolkit
colorama
frida-python
websockets
];
meta = {
description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (client tools)";
homepage = "https://www.frida.re/";
maintainers = with lib.maintainers; [ s1341 ];
license = lib.licenses.wxWindows;
};
}
|