1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "filebytes";
8 version = "0.10.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "97d1f1f4ba660d8df6c51beea36ea7185704307d54b0b5d72ce57415c9ece082";
13 };
14
15 meta = with stdenv.lib; {
16 homepage = "https://scoding.de/filebytes-introduction";
17 license = licenses.gpl2;
18 description = "Scripts to parse ELF, PE, Mach-O and OAT (Android Runtime)";
19 maintainers = with maintainers; [ bennofs ];
20 };
21
22}