add a nix shell script for nix users

This commit is contained in:
Bignaux Ronan 2024-10-10 17:37:28 +02:00
parent 66bb0d52ee
commit b59f65f94e

26
shell.nix Normal file
View file

@ -0,0 +1,26 @@
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
];
}