13 buildPythonPackage rec {
14 pname = "dissect-vmfs";
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
22 repo = "dissect.vmfs";
23 rev = "refs/tags/${version}";
24 hash = "sha256-855Rqz4WuTwopJo1yT8zsSvods3p+7EoB1sAXu3U5QU=";
32 propagatedBuildInputs = [
37 nativeCheckInputs = [ pytestCheckHook ];
39 pythonImportsCheck = [ "dissect.vmfs" ];
42 description = "Dissect module implementing a parser for the VMFS file system";
43 homepage = "https://github.com/fox-it/dissect.vmfs";
44 changelog = "https://github.com/fox-it/dissect.vmfs/releases/tag/${version}";
45 license = licenses.agpl3Only;
46 maintainers = with maintainers; [ fab ];