python3Packages.python-ipmi: 0.5.7 -> 0.5.8 (#469871)

This commit is contained in:
Nick Cao
2025-12-11 20:37:54 +00:00
committed by GitHub
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "python-ipmi";
version = "0.5.7";
version = "0.5.8";
pyproject = true;
src = fetchFromGitHub {
owner = "kontron";
repo = "python-ipmi";
tag = version;
hash = "sha256-vwjVUkTeVC1On1I1BtM0kBbne6CbX/6Os1+HA8WN9jU=";
hash = "sha256-9xPnLNyHKvVebRM/mIoEVzhT2EwmgJxCTztLSZrnXVc=";
};
postPatch = ''
@@ -25,17 +25,15 @@ buildPythonPackage rec {
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyipmi" ];
meta = {
description = "Python IPMI Library";
mainProgram = "ipmitool.py";
homepage = "https://github.com/kontron/python-ipmi";
license = with lib.licenses; [ lgpl2Plus ];
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "ipmitool.py";
};
}