about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dissect-executable
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-11 11:23:25 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-02-11 11:23:25 +0100
commitdfae8e615ac27ac470731dd7430abb4b50c40687 (patch)
treed387b3fe66df5b1514a7fe4f377d2b55bc6bff84 /pkgs/development/python-modules/dissect-executable
parent88e0332e0a52139b7682472bcd6e7f8106299f34 (diff)
python310Packages.dissect-executable: init at 1.1
Diffstat (limited to 'pkgs/development/python-modules/dissect-executable')
-rw-r--r--pkgs/development/python-modules/dissect-executable/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dissect-executable/default.nix b/pkgs/development/python-modules/dissect-executable/default.nix
new file mode 100644
index 0000000000000..0b932de9a2a21
--- /dev/null
+++ b/pkgs/development/python-modules/dissect-executable/default.nix
@@ -0,0 +1,48 @@
+{ lib
+, buildPythonPackage
+, dissect-cstruct
+, dissect-util
+, fetchFromGitHub
+, setuptools
+, setuptools-scm
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+  pname = "dissect-executable";
+  version = "1.1";
+  format = "pyproject";
+
+  disabled = pythonOlder "3.7";
+
+  src = fetchFromGitHub {
+    owner = "fox-it";
+    repo = "dissect.executable";
+    rev = "refs/tags/${version}";
+    hash = "sha256-c58g2L3B/3/pC+iyXphYsjhpBs0I0Q64B8+rv5k1dtg=";
+  };
+
+  SETUPTOOLS_SCM_PRETEND_VERSION = version;
+
+  nativeBuildInputs = [
+    setuptools
+    setuptools-scm
+  ];
+
+  propagatedBuildInputs = [
+    dissect-cstruct
+    dissect-util
+  ];
+
+  pythonImportsCheck = [
+    "dissect.executable"
+  ];
+
+  meta = with lib; {
+    description = "Dissect module implementing a parser for various executable formats such as PE, ELF and Macho-O";
+    homepage = "https://github.com/fox-it/dissect.executable";
+    changelog = "https://github.com/fox-it/dissect.executable/releases/tag/${version}";
+    license = licenses.agpl3Only;
+    maintainers = with maintainers; [ fab ];
+  };
+}