python312Packages.dissect-btrfs: init at 1.1
Dissect module implementing a parser for the BTRFS file system https://github.com/fox-it/dissect.btrfs
This commit is contained in:
parent
9e1cdfac65
commit
c0c961fe51
62
pkgs/development/python-modules/dissect-btrfs/default.nix
Normal file
62
pkgs/development/python-modules/dissect-btrfs/default.nix
Normal file
@ -0,0 +1,62 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, dissect-cstruct
|
||||
, dissect-util
|
||||
, fetchFromGitHub
|
||||
, google-crc32c
|
||||
, python-lzo
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, zstandard
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dissect-btrfs";
|
||||
version = "1.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fox-it";
|
||||
repo = "dissect.btrfs";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-3k0UUkce7bZ3mZ8Umjms4DX63QeBdRPUXpsdaK0VDyc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dissect-cstruct
|
||||
dissect-util
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
full = [
|
||||
python-lzo
|
||||
zstandard
|
||||
];
|
||||
gcrc32 = [
|
||||
google-crc32c
|
||||
];
|
||||
};
|
||||
|
||||
# Issue with the test file handling
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"dissect.btrfs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Dissect module implementing a parser for the BTRFS file system";
|
||||
homepage = "https://github.com/fox-it/dissect.btrfs";
|
||||
changelog = "https://github.com/fox-it/dissect.btrfs/releases/tag/${version}";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -2902,6 +2902,8 @@ self: super: with self; {
|
||||
|
||||
dissect = callPackage ../development/python-modules/dissect { };
|
||||
|
||||
dissect-btrfs = callPackage ../development/python-modules/dissect-btrfs { };
|
||||
|
||||
dissect-cim = callPackage ../development/python-modules/dissect-cim { };
|
||||
|
||||
dissect-clfs = callPackage ../development/python-modules/dissect-clfs { };
|
||||
|
Loading…
Reference in New Issue
Block a user