Update amd-debug-tools to 0.2.8.

This commit is contained in:
Tom Alexander 2025-09-29 21:17:30 -04:00
parent ad2c4809d7
commit da66a6917b
Signed by: talexander
GPG Key ID: 36C99E8B3C39D85F

View File

@ -8,7 +8,7 @@
}:
let
version = "0.2.7";
version = "0.2.8";
in
python3Packages.buildPythonApplication {
pname = "amd-debug-tools";
@ -16,27 +16,28 @@ python3Packages.buildPythonApplication {
pyproject = true;
build-system = with python3Packages; [
setuptools
setuptools-git-versioning
setuptools-git
pyudev
setuptools
setuptools-git
setuptools-git-versioning
];
dependencies = with python3Packages; [
acpica-tools
cysystemd
dbus-fast
ethtool
jinja2
libdisplay-info
matplotlib
pandas
pyudev
seaborn
tabulate
acpica-tools
ethtool
libdisplay-info
];
src = fetchgit {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git";
tag = version;
hash = "sha256-6X9cUKN0BkkKcYGU+YJYCGT+l5iUZDN+D8Fqq/ns98Q=";
hash = "sha256-EmXsW7Q5WMFL32LWr29W3GnGpw5aj53wlp9KbFV1r0Q=";
leaveDotGit = true;
};
@ -52,6 +53,7 @@ python3Packages.buildPythonApplication {
meta = {
description = "Debug tools for AMD zen systems";
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git/";
changelog = "https://git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git/tag/?h=${version}";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
};