about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dissect-eventlog
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-10-07 20:29:26 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-10-07 20:29:26 +0200
commit0b49fc77333cd4f69dc0e25a3b41caab2f08c892 (patch)
treea783a37ddf0ae7cf17011b2b9359449d176a90e2 /pkgs/development/python-modules/dissect-eventlog
parentd4fecc383e009bfc62ecfa17bbb7843ff623b19b (diff)
python310Packages.dissect-eventlog: init at 3.1
Diffstat (limited to 'pkgs/development/python-modules/dissect-eventlog')
-rw-r--r--pkgs/development/python-modules/dissect-eventlog/default.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dissect-eventlog/default.nix b/pkgs/development/python-modules/dissect-eventlog/default.nix
new file mode 100644
index 0000000000000..d5b8b87a22712
--- /dev/null
+++ b/pkgs/development/python-modules/dissect-eventlog/default.nix
@@ -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 ];
+  };
+}