tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.acquire: init at 3.2
Fabian Affolter
3 years ago
9769c4bd
73ed5118
+74
3 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
acquire
default.nix
top-level
all-packages.nix
python-packages.nix
+70
pkgs/development/python-modules/acquire/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, defusedxml
4
4
+
, dissect-cstruct
5
5
+
, dissect-target
6
6
+
, fetchFromGitHub
7
7
+
, minio
8
8
+
, pycryptodome
9
9
+
, pytestCheckHook
10
10
+
, pythonOlder
11
11
+
, requests
12
12
+
, requests-toolbelt
13
13
+
, rich
14
14
+
, setuptools
15
15
+
, setuptools-scm
16
16
+
}:
17
17
+
18
18
+
buildPythonPackage rec {
19
19
+
pname = "acquire";
20
20
+
version = "3.2";
21
21
+
format = "pyproject";
22
22
+
23
23
+
disabled = pythonOlder "3.7";
24
24
+
25
25
+
src = fetchFromGitHub {
26
26
+
owner = "fox-it";
27
27
+
repo = "acquire";
28
28
+
rev = version;
29
29
+
hash = "sha256-YwmrdqWG5qD621+jQMVyTM0Uy0yXCVPv9zfVhZ+ohg0=";
30
30
+
};
31
31
+
32
32
+
SETUPTOOLS_SCM_PRETEND_VERSION = version;
33
33
+
34
34
+
nativeBuildInputs = [
35
35
+
setuptools
36
36
+
setuptools-scm
37
37
+
];
38
38
+
39
39
+
propagatedBuildInputs = [
40
40
+
defusedxml
41
41
+
dissect-cstruct
42
42
+
dissect-target
43
43
+
];
44
44
+
45
45
+
passthru.optional-dependencies = {
46
46
+
full = [
47
47
+
dissect-target
48
48
+
minio
49
49
+
pycryptodome
50
50
+
requests
51
51
+
requests-toolbelt
52
52
+
rich
53
53
+
] ++ dissect-target.optional-dependencies.full;
54
54
+
};
55
55
+
56
56
+
checkInputs = [
57
57
+
pytestCheckHook
58
58
+
] ++ passthru.optional-dependencies.full;
59
59
+
60
60
+
pythonImportsCheck = [
61
61
+
"acquire"
62
62
+
];
63
63
+
64
64
+
meta = with lib; {
65
65
+
description = "Tool to quickly gather forensic artifacts from disk images or a live system";
66
66
+
homepage = "https://github.com/fox-it/acquire";
67
67
+
license = licenses.agpl3Only;
68
68
+
maintainers = with maintainers; [ fab ];
69
69
+
};
70
70
+
}
+2
pkgs/top-level/all-packages.nix
···
1106
1106
1107
1107
acpica-tools = callPackage ../tools/system/acpica-tools { };
1108
1108
1109
1109
+
acquire = with python3Packages; toPythonApplication acquire;
1110
1110
+
1109
1111
act = callPackage ../development/tools/misc/act { };
1110
1112
1111
1113
actdiag = with python3.pkgs; toPythonApplication actdiag;
+2
pkgs/top-level/python-packages.nix
···
171
171
172
172
acoustics = callPackage ../development/python-modules/acoustics { };
173
173
174
174
+
acquire = callPackage ../development/python-modules/acquire { };
175
175
+
174
176
actdiag = callPackage ../development/python-modules/actdiag { };
175
177
176
178
adafruit-io = callPackage ../development/python-modules/adafruit-io { };