auto-cpufreq: getent in propagatedBuildInputs (#350511)

This commit is contained in:
Rick van Schijndel
2024-10-28 21:33:57 +01:00
committed by GitHub
+13 -9
View File
@@ -6,6 +6,7 @@
gobject-introspection,
wrapGAppsHook3,
gtk3,
getent,
}:
python3Packages.buildPythonPackage rec {
pname = "auto-cpufreq";
@@ -29,15 +30,18 @@ python3Packages.buildPythonPackage rec {
python3Packages.poetry-core
];
propagatedBuildInputs = with python3Packages; [
click
distro
psutil
pygobject3
poetry-dynamic-versioning
setuptools
pyinotify
];
propagatedBuildInputs =
with python3Packages;
[
click
distro
psutil
pygobject3
poetry-dynamic-versioning
setuptools
pyinotify
]
++ [ getent ];
doCheck = false;
pythonImportsCheck = [ "auto_cpufreq" ];