mirror of
https://github.com/bkerler/mtkclient.git
synced 2024-11-14 11:14:56 -05:00
26 lines
321 B
Nix
26 lines
321 B
Nix
with import <nixpkgs> { };
|
|
|
|
mkShell {
|
|
|
|
name = "mtkclient";
|
|
|
|
buildInputs = with python3Packages; [
|
|
capstone
|
|
colorama
|
|
flake8
|
|
fusepy
|
|
keystone
|
|
keystone-engine
|
|
mock
|
|
pycryptodome
|
|
pycryptodomex
|
|
pyserial
|
|
pyside6
|
|
pyusb
|
|
setuptools
|
|
shiboken6
|
|
unicorn
|
|
wheel
|
|
];
|
|
|
|
}
|