11 buildPythonPackage rec {
12 pname = "dissect-executable";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "dissect.executable";
21 rev = "refs/tags/${version}";
22 hash = "sha256-aAalU0TUqXc13WnxJvirG3QzQyMstecOfnXMdFT8IzU=";
30 propagatedBuildInputs = [
35 pythonImportsCheck = [
40 description = "Dissect module implementing a parser for various executable formats such as PE, ELF and Macho-O";
41 homepage = "https://github.com/fox-it/dissect.executable";
42 changelog = "https://github.com/fox-it/dissect.executable/releases/tag/${version}";
43 license = licenses.agpl3Only;
44 maintainers = with maintainers; [ fab ];