13 buildPythonPackage rec {
14 pname = "dissect-esedb";
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
22 repo = "dissect.esedb";
23 rev = "refs/tags/${version}";
24 hash = "sha256-IDLarSiI7GHjOOLibk2s/KqKwmozgIHdSfClPQXOsXI=";
32 propagatedBuildInputs = [
37 nativeCheckInputs = [ pytestCheckHook ];
39 pythonImportsCheck = [ "dissect.esedb" ];
42 description = "Dissect module implementing a parser for Microsofts Extensible Storage Engine Database (ESEDB)";
43 homepage = "https://github.com/fox-it/dissect.esedb";
44 changelog = "https://github.com/fox-it/dissect.esedb/releases/tag/${version}";
45 license = licenses.agpl3Only;
46 maintainers = with maintainers; [ fab ];