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