Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / filebytes / default.nix
blob9dd04c3c4cb707436d3197c6b49db181b6892ad2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "filebytes";
8   version = "0.10.2";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0h97i6h525hg401dvvaa5krxi184qpvldbdn0izmirvr9pvh4hkn";
14   };
16   meta = with lib; {
17     homepage = "https://scoding.de/filebytes-introduction";
18     license = licenses.gpl2;
19     description = "Scripts to parse ELF, PE, Mach-O and OAT (Android Runtime)";
20     maintainers = with maintainers; [ bennofs ];
21   };