tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.dissect-clfs: format with nixfmt
Fabian Affolter
2 years ago
557f5eaf
66fe750f
+12
-17
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
dissect-clfs
default.nix
+12
-17
pkgs/development/python-modules/dissect-clfs/default.nix
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, dissect-cstruct
4
4
-
, fetchFromGitHub
5
5
-
, setuptools
6
6
-
, setuptools-scm
7
7
-
, pytestCheckHook
8
8
-
, pythonOlder
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
dissect-cstruct,
5
5
+
fetchFromGitHub,
6
6
+
setuptools,
7
7
+
setuptools-scm,
8
8
+
pytestCheckHook,
9
9
+
pythonOlder,
9
10
}:
10
11
11
12
buildPythonPackage rec {
···
27
28
setuptools-scm
28
29
];
29
30
30
30
-
dependencies = [
31
31
-
dissect-cstruct
32
32
-
];
31
31
+
dependencies = [ dissect-cstruct ];
33
32
34
34
-
nativeCheckInputs = [
35
35
-
pytestCheckHook
36
36
-
];
33
33
+
nativeCheckInputs = [ pytestCheckHook ];
37
34
38
38
-
pythonImportsCheck = [
39
39
-
"dissect.clfs"
40
40
-
];
35
35
+
pythonImportsCheck = [ "dissect.clfs" ];
41
36
42
37
meta = with lib; {
43
38
description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system";