python310Packages.dissect-eventlog: init at 3.1

This commit is contained in:
Fabian Affolter
2022-10-07 20:29:26 +02:00
parent d4fecc383e
commit 0b49fc7733
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, dissect-cstruct
, dissect-util
, fetchFromGitHub
, setuptools
, setuptools-scm
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "dissect-eventlog";
version = "3.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.eventlog";
rev = version;
hash = "sha256-cLIsK2/pL9nNOitoTZprqAio1BOo3/Uqfbl8uL/1tG4=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dissect-cstruct
dissect-util
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"dissect.eventlog"
];
meta = with lib; {
description = "Dissect module implementing parsers for the Windows EVT, EVTX and WEVT log file formats";
homepage = "https://github.com/fox-it/dissect.eventlog";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -2485,6 +2485,8 @@ in {
dissect-etl = callPackage ../development/python-modules/dissect-etl { };
dissect-eventlog = callPackage ../development/python-modules/dissect-eventlog { };
dissect-evidence = callPackage ../development/python-modules/dissect-evidence { };
dissect-util = callPackage ../development/python-modules/dissect-util { };