biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / filebytes / default.nix
blobedfe2556fa748053f8231fef35753915549f6919
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "filebytes";
9   version = "0.10.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0h97i6h525hg401dvvaa5krxi184qpvldbdn0izmirvr9pvh4hkn";
15   };
17   meta = with lib; {
18     homepage = "https://scoding.de/filebytes-introduction";
19     license = licenses.gpl2;
20     description = "Scripts to parse ELF, PE, Mach-O and OAT (Android Runtime)";
21     maintainers = with maintainers; [ bennofs ];
22   };