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
-
{ lib
2
-
, buildPythonPackage
3
-
, dissect-cstruct
4
-
, fetchFromGitHub
5
-
, setuptools
6
-
, setuptools-scm
7
-
, pytestCheckHook
8
-
, pythonOlder
0
9
}:
10
11
buildPythonPackage rec {
···
27
setuptools-scm
28
];
29
30
-
dependencies = [
31
-
dissect-cstruct
32
-
];
33
34
-
nativeCheckInputs = [
35
-
pytestCheckHook
36
-
];
37
38
-
pythonImportsCheck = [
39
-
"dissect.clfs"
40
-
];
41
42
meta = with lib; {
43
description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
dissect-cstruct,
5
+
fetchFromGitHub,
6
+
setuptools,
7
+
setuptools-scm,
8
+
pytestCheckHook,
9
+
pythonOlder,
10
}:
11
12
buildPythonPackage rec {
···
28
setuptools-scm
29
];
30
31
+
dependencies = [ dissect-cstruct ];
0
0
32
33
+
nativeCheckInputs = [ pytestCheckHook ];
0
0
34
35
+
pythonImportsCheck = [ "dissect.clfs" ];
0
0
36
37
meta = with lib; {
38
description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system";