Merge pull request #1251 from bignaux/nixshell
Some checks are pending
Python application / Test (push) Waiting to run

add a nix shell script for nix users
This commit is contained in:
Bjoern Kerler 2024-10-20 18:10:28 +02:00 committed by GitHub
commit 20c7a50b17
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
];
}