lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.dissect-cramfs: init at 1.0

Dissect module implementing a parser for the CRAMFS file system

https://github.com/fox-it/dissect.cramfs

+47
+45
pkgs/development/python-modules/dissect-cramfs/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + dissect-cstruct, 5 + dissect-util, 6 + fetchFromGitHub, 7 + setuptools, 8 + setuptools-scm, 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "dissect-cramfs"; 13 + version = "1.0"; 14 + pyproject = true; 15 + 16 + src = fetchFromGitHub { 17 + owner = "fox-it"; 18 + repo = "dissect.cramfs"; 19 + tag = version; 20 + hash = "sha256-0BHt7v2sI9uxZFUVsTkPZHy+wC6twaHeBmgH04anmp0="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + setuptools 25 + setuptools-scm 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + dissect-cstruct 30 + dissect-util 31 + ]; 32 + 33 + # Issue with the test file handling 34 + doCheck = false; 35 + 36 + pythonImportsCheck = [ "dissect.cramfs" ]; 37 + 38 + meta = with lib; { 39 + description = "Dissect module implementing a parser for the CRAMFS file system"; 40 + homepage = "https://github.com/fox-it/dissect.cramfs"; 41 + changelog = "https://github.com/fox-it/dissect.crmfs/releases/tag/${src.tag}"; 42 + license = licenses.agpl3Only; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+2
pkgs/top-level/python-packages.nix
··· 3715 3715 3716 3716 dissect-cobaltstrike = callPackage ../development/python-modules/dissect-cobaltstrike { }; 3717 3717 3718 + dissect-cramfs = callPackage ../development/python-modules/dissect-cramfs { }; 3719 + 3718 3720 dissect-cstruct = callPackage ../development/python-modules/dissect-cstruct { }; 3719 3721 3720 3722 dissect-esedb = callPackage ../development/python-modules/dissect-esedb { };