13 buildPythonPackage rec {
14 pname = "dissect-eventlog";
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
22 repo = "dissect.eventlog";
23 rev = "refs/tags/${version}";
24 hash = "sha256-MXjWHbw/iEzKo4cgiYAHLzt6/Y7s9o9cPNV5TD0gqW8=";
32 propagatedBuildInputs = [
37 nativeCheckInputs = [ pytestCheckHook ];
39 pythonImportsCheck = [ "dissect.eventlog" ];
42 description = "Dissect module implementing parsers for the Windows EVT, EVTX and WEVT log file formats";
43 homepage = "https://github.com/fox-it/dissect.eventlog";
44 changelog = "https://github.com/fox-it/dissect.eventlog/releases/tag/${version}";
45 license = licenses.agpl3Only;
46 maintainers = with maintainers; [ fab ];