2018-10-16 20:56:20 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "filebytes";
|
2018-10-24 14:13:19 +02:00
|
|
|
version = "0.9.17";
|
2018-10-16 20:56:20 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 14:13:19 +02:00
|
|
|
sha256 = "0nkwrw3qnii346xd87gb9xdy5pjpmg7ncjxsmb08mhmy1i0libcl";
|
2018-10-16 20:56:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|