{ lib, buildPythonPackage, dissect-cstruct, dissect-util, fetchFromGitHub, setuptools, setuptools-scm, pytestCheckHook, pythonOlder, }: buildPythonPackage rec { pname = "dissect-evidence"; version = "3.11"; pyproject = true; disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "fox-it"; repo = "dissect.evidence"; tag = version; hash = "sha256-1MXOlPhiSAOJtX2MDaLFw4tFpp+GaGUxlU3jq/Mereo="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ dissect-cstruct dissect-util ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "dissect.evidence" ]; meta = with lib; { description = "Dissect module implementing a parsers for various forensic evidence file containers"; homepage = "https://github.com/fox-it/dissect.evidence"; changelog = "https://github.com/fox-it/dissect.evidence/releases/tag/${src.tag}"; license = licenses.agpl3Only; maintainers = with maintainers; [ fab ]; }; }