nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 45 lines 943 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 dissect-cstruct, 5 dissect-util, 6 fetchFromGitHub, 7 setuptools, 8 setuptools-scm, 9}: 10 11buildPythonPackage rec { 12 pname = "dissect-fat"; 13 version = "3.13"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "fox-it"; 18 repo = "dissect.fat"; 19 tag = version; 20 hash = "sha256-BxxC+ebD8xYrBVuYmXdxPcU2JDJgWAtEBlVGqE8oVec="; 21 }; 22 23 build-system = [ 24 setuptools 25 setuptools-scm 26 ]; 27 28 dependencies = [ 29 dissect-cstruct 30 dissect-util 31 ]; 32 33 # dissect.fat.exceptions.InvalidBPB: Invalid BS_jmpBoot 34 doCheck = false; 35 36 pythonImportsCheck = [ "dissect.fat" ]; 37 38 meta = { 39 description = "Dissect module implementing a parser for the FAT file system"; 40 homepage = "https://github.com/fox-it/dissect.fat"; 41 changelog = "https://github.com/fox-it/dissect.fat/releases/tag/${src.tag}"; 42 license = lib.licenses.agpl3Only; 43 maintainers = with lib.maintainers; [ fab ]; 44 }; 45}