14 buildPythonPackage rec {
15 pname = "dissect-etl";
19 disabled = pythonOlder "3.10";
21 src = fetchFromGitHub {
24 rev = "refs/tags/${version}";
25 hash = "sha256-c8qbh0LSTAV23J//Kx76eeIjptW1cVcxBSqO22okRkU=";
39 nativeCheckInputs = [ pytestCheckHook ];
41 pythonImportsCheck = [ "dissect.etl" ];
44 description = "Dissect module implementing a parser for Event Trace Log (ETL) files";
45 homepage = "https://github.com/fox-it/dissect.etl";
46 changelog = "https://github.com/fox-it/dissect.etl/releases/tag/${version}";
47 license = licenses.agpl3Only;
48 maintainers = with maintainers; [ fab ];