My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/filebytes/default.nix

22 lines
483 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "filebytes";
version = "0.10.2";
src = fetchPypi {
inherit pname version;
sha256 = "0h97i6h525hg401dvvaa5krxi184qpvldbdn0izmirvr9pvh4hkn";
};
meta = with 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 ];
};
}