Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
dissect-cstruct,
|
|
dissect-util,
|
|
fetchFromGitHub,
|
|
google-crc32c,
|
|
python-lzo,
|
|
pythonOlder,
|
|
setuptools,
|
|
setuptools-scm,
|
|
zstandard,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dissect-btrfs";
|
|
version = "1.7";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fox-it";
|
|
repo = "dissect.btrfs";
|
|
tag = version;
|
|
hash = "sha256-BREkGrQ1khz+uPahHeMwD0V8JytQY1K/oYa7nxP+bR0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dissect-cstruct
|
|
dissect-util
|
|
];
|
|
|
|
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/${src.tag}";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|