python313Packages.dissect-qnxfs: init at 1.0
Dissect module implementing a parser for the QNX4 and QNX6 file systems https://github.com/fox-it/dissect.qnxfs
This commit is contained in:
parent
1bf169c386
commit
30a9441ffa
49
pkgs/development/python-modules/dissect-qnxfs/default.nix
Normal file
49
pkgs/development/python-modules/dissect-qnxfs/default.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
dissect-cstruct,
|
||||
dissect-util,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dissect-qnxfs";
|
||||
version = "1.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fox-it";
|
||||
repo = "dissect.qnxfs";
|
||||
tag = version;
|
||||
hash = "sha256-UnEwBcaBP64qIWVYWcsxxjWuiAM9yOCGWevnNonQn+8=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
dissect-cstruct
|
||||
dissect-util
|
||||
];
|
||||
|
||||
optional-dependencies = {
|
||||
dev = [
|
||||
dissect-cstruct
|
||||
dissect-util
|
||||
];
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "dissect.qnxfs" ];
|
||||
|
||||
meta = {
|
||||
description = "Dissect module implementing a parser for the QNX4 and QNX6 file systems";
|
||||
homepage = "https://github.com/fox-it/dissect.qnxfs";
|
||||
changelog = "https://github.com/fox-it/dissect.qnxfs/releases/tag/${src.tag}";
|
||||
license = lib.licenses.agpl3Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@ -3645,6 +3645,8 @@ self: super: with self; {
|
||||
|
||||
dissect-ole = callPackage ../development/python-modules/dissect-ole { };
|
||||
|
||||
dissect-qnxfs = callPackage ../development/python-modules/dissect-qnxfs { };
|
||||
|
||||
dissect-regf = callPackage ../development/python-modules/dissect-regf { };
|
||||
|
||||
dissect-shellitem = callPackage ../development/python-modules/dissect-shellitem { };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user