python310Packages.liquidctl: update changelog
- update disabled
This commit is contained in:
parent
9fb7f22420
commit
345fcc9344
1 changed files with 14 additions and 6 deletions
|
@ -18,14 +18,15 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "liquidctl";
|
||||
version = "1.12.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-5apn+8X7si8jniHSjt7sveqIuzeuI4uXllR627aT2vI=";
|
||||
hash = "sha256-5apn+8X7si8jniHSjt7sveqIuzeuI4uXllR627aT2vI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -48,7 +49,10 @@ buildPythonPackage rec {
|
|||
smbus-cffi
|
||||
];
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
outputs = [
|
||||
"out"
|
||||
"man"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
installManPage liquidctl.8
|
||||
|
@ -58,19 +62,23 @@ buildPythonPackage rec {
|
|||
cp extra/linux/71-liquidctl.rules $out/lib/udev/rules.d/.
|
||||
'';
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
postBuild = ''
|
||||
# needed for pythonImportsCheck
|
||||
export XDG_RUNTIME_DIR=$TMPDIR
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "liquidctl" ];
|
||||
pythonImportsCheck = [
|
||||
"liquidctl"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cross-platform CLI and Python drivers for AIO liquid coolers and other devices";
|
||||
homepage = "https://github.com/liquidctl/liquidctl";
|
||||
changelog = "https://github.com/liquidctl/liquidctl/blob/master/CHANGELOG.md";
|
||||
changelog = "https://github.com/liquidctl/liquidctl/blob/v${version}/CHANGELOG.md";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ arturcygan evils ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue