mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
2a6911efca
Diff: https://github.com/fox-it/dissect.btrfs/compare/refs/tags/1.5...1.6 Changelog: https://github.com/fox-it/dissect.btrfs/releases/tag/1.6
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.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fox-it";
|
|
repo = "dissect.btrfs";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-p7gtzZhKOovA+BcM7jYdicP301ueMS1IMGkBbmOxaIA=";
|
|
};
|
|
|
|
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/${version}";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|