23 lines
505 B
Nix
23 lines
505 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "filebytes";
|
|
version = "0.9.20";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6c33986ca048e49cf1a5e2f167af9f02c7f866576b3b91a8a9124d32e57f935d";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|