12 buildPythonPackage rec {
13 pname = "dissect-executable";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "dissect.executable";
22 rev = "refs/tags/${version}";
23 hash = "sha256-qr8t+k0m9VoF2hLNilCLJ9BfATLRlZupF2C9l+6OMDo=";
36 pythonImportsCheck = [ "dissect.executable" ];
39 description = "Dissect module implementing a parser for various executable formats such as PE, ELF and Macho-O";
40 homepage = "https://github.com/fox-it/dissect.executable";
41 changelog = "https://github.com/fox-it/dissect.executable/releases/tag/${version}";
42 license = licenses.agpl3Only;
43 maintainers = with maintainers; [ fab ];