tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.dissect-fat: format with nixfmt
Fabian Affolter
2 years ago
db0eecc0
49da26d8
+10
-11
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
dissect-fat
default.nix
+10
-11
pkgs/development/python-modules/dissect-fat/default.nix
reviewed
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, dissect-cstruct
4
4
-
, dissect-util
5
5
-
, fetchFromGitHub
6
6
-
, setuptools
7
7
-
, setuptools-scm
8
8
-
, pythonOlder
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
dissect-cstruct,
5
5
+
dissect-util,
6
6
+
fetchFromGitHub,
7
7
+
setuptools,
8
8
+
setuptools-scm,
9
9
+
pythonOlder,
9
10
}:
10
11
11
12
buildPythonPackage rec {
···
35
36
# dissect.fat.exceptions.InvalidBPB: Invalid BS_jmpBoot
36
37
doCheck = false;
37
38
38
38
-
pythonImportsCheck = [
39
39
-
"dissect.fat"
40
40
-
];
39
39
+
pythonImportsCheck = [ "dissect.fat" ];
41
40
42
41
meta = with lib; {
43
42
description = "Dissect module implementing a parser for the FAT file system";