16dbe8e534
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-filebytes/versions
23 lines
493 B
Nix
23 lines
493 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "filebytes";
|
|
version = "0.9.18";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1y50wagcs1p5w1j4fxyfr209595m706ifdirv8vr8nc9xqd6ngjs";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|