frida-tools: use fetchPypi from top-level
This commit is contained in:
parent
1760dc90c5
commit
e87f290b64
1 changed files with 4 additions and 4 deletions
|
@ -1,15 +1,15 @@
|
|||
{ lib, python3 }:
|
||||
{ lib, fetchPypi, python3Packages }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "frida-tools";
|
||||
version = "12.1.2";
|
||||
|
||||
src = python3.pkgs.fetchPypi {
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-9SlDyp1fLOzLqu6sxVqY2jwEzQjrnbzfQXIRoyviPJY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pygments
|
||||
prompt_toolkit
|
||||
colorama
|
||||
|
|
Loading…
Reference in a new issue