28 lines
838 B
Nix
28 lines
838 B
Nix
{ lib, buildPythonPackage, fetchPypi, click, pytestCheckHook, requests }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "afancontrol";
|
|
version = "3.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-FAOZWoSi7IgONtNspUxR4h5FnkkrNrE0N861t5LHpGw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ click ];
|
|
checkInputs = [ pytestCheckHook requests ];
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/etc/systemd/system/afancontrol.service \
|
|
--replace "/usr/bin/afancontrol" "$out/bin/afancontrol"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Advanced Fan Control program, which controls PWM fans according to the current temperatures of the system components";
|
|
homepage = "https://afancontrol.readthedocs.io/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sbruder ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|