{ stdenv , buildPythonPackage , fetchPypi }: buildPythonPackage rec { pname = "filebytes"; version = "0.10.0"; src = fetchPypi { inherit pname version; sha256 = "97d1f1f4ba660d8df6c51beea36ea7185704307d54b0b5d72ce57415c9ece082"; }; meta = with stdenv.lib; { homepage = "https://scoding.de/filebytes-introduction"; license = licenses.gpl2; description = "Scripts to parse ELF, PE, Mach-O and OAT (Android Runtime)"; maintainers = with maintainers; [ bennofs ]; }; }