5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
48 lines
1,007 B
Nix
48 lines
1,007 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
dissect-cstruct,
|
|
dissect-util,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
setuptools-scm,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dissect-fat";
|
|
version = "3.9";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fox-it";
|
|
repo = "dissect.fat";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-U7SSLvEK6IYZjjUIGT9n1w7oLdB8Q2/msQ/EBJfatJY=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
dissect-cstruct
|
|
dissect-util
|
|
];
|
|
|
|
# dissect.fat.exceptions.InvalidBPB: Invalid BS_jmpBoot
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "dissect.fat" ];
|
|
|
|
meta = with lib; {
|
|
description = "Dissect module implementing a parser for the FAT file system";
|
|
homepage = "https://github.com/fox-it/dissect.fat";
|
|
changelog = "https://github.com/fox-it/dissect.fat/releases/tag/${version}";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|