blob: 8f2f0c07360984e65939df412a80e4db751addf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, cryptography
, pytestCheckHook
, pefile
}:
buildPythonPackage rec {
pname = "virt-firmware";
version = "24.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-bvk3MIgPY6DJ+y0eKQHLffClNjPAEP7AJ15rFObiMig=";
};
pythonImportsCheck = [ "virt.firmware.efi" ];
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = ["tests/tests.py"];
propagatedBuildInputs = [
setuptools
cryptography
pefile
];
meta = with lib; {
description = "Tools for virtual machine firmware volumes";
homepage = "https://gitlab.com/kraxel/virt-firmware";
license = licenses.gpl2;
maintainers = with maintainers; [ lheckemann raitobezarius ];
};
}
|