1 { lib, buildPythonPackage, fetchFromGitHub, pyyaml }:
3 buildPythonPackage rec {
5 version = "unstable-2022-09-04";
8 src = fetchFromGitHub {
11 rev = "45e6b1e53967ee6590faae454c076febce096931";
12 hash = "sha256-XbvcE/MXNj5S5N7A7jxdwgEE5yMuB82Xg+PYBsFRIm0=";
15 propagatedBuildInputs = [ pyyaml ];
20 pythonImportsCheck = [ "ovmfvartool" ];
23 description = "Parse and generate OVMF_VARS.fd from Yaml";
24 mainProgram = "ovmfvartool";
25 homepage = "https://github.com/hlandau/ovmfvartool";
26 license = licenses.gpl3Plus;
27 maintainers = with maintainers; [ baloo raitobezarius ];