nixpkgs/pkgs/development/python-modules/filebytes/default.nix

23 lines
505 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "filebytes";
2019-04-16 18:15:35 +01:00
version = "0.9.20";
src = fetchPypi {
inherit pname version;
2019-04-16 18:15:35 +01:00
sha256 = "6c33986ca048e49cf1a5e2f167af9f02c7f866576b3b91a8a9124d32e57f935d";
};
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 ];
};
}