28 lines
695 B
Nix
28 lines
695 B
Nix
|
{ lib, buildPythonPackage, fetchFromGitHub, pyyaml }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ovmfvartool";
|
||
|
version = "unstable-2022-09-04";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "hlandau";
|
||
|
repo = pname;
|
||
|
rev = "45e6b1e53967ee6590faae454c076febce096931";
|
||
|
hash = "sha256-XbvcE/MXNj5S5N7A7jxdwgEE5yMuB82Xg+PYBsFRIm0=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pyyaml ];
|
||
|
|
||
|
# has no tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "ovmfvartool" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Parse and generate OVMF_VARS.fd from Yaml";
|
||
|
homepage = "https://github.com/hlandau/ovmfvartool";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ baloo raitobezarius ];
|
||
|
};
|
||
|
}
|