python310Packages.dissect-fat: init at 3.1

main
Fabian Affolter 2 years ago
parent 3e2353ce2e
commit 2d0a7da097
  1. 50
      pkgs/development/python-modules/dissect-fat/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, dissect-cstruct
, dissect-util
, fetchFromGitHub
, setuptools
, setuptools-scm
, pythonOlder
}:
buildPythonPackage rec {
pname = "dissect-fat";
version = "3.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.fat";
rev = version;
hash = "sha256-GBeacQtNA1onh67Svqo5R43gap/Lzpm+20TXcUMmU5k=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
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";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}

@ -2483,6 +2483,8 @@ in {
dissect-cstruct = callPackage ../development/python-modules/dissect-cstruct { };
dissect-fat = callPackage ../development/python-modules/dissect-fat { };
dissect-ffs = callPackage ../development/python-modules/dissect-ffs { };
dissect-etl = callPackage ../development/python-modules/dissect-etl { };

Loading…
Cancel
Save