depot/third_party/nixpkgs/pkgs/development/python-modules/dissect-btrfs/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

59 lines
1.2 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.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.btrfs";
rev = "refs/tags/${version}";
hash = "sha256-cQC9lY80JOgLJZpNCwpvDldWjfbbI14uc9q/miAOBGM=";
};
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 ];
};
}