Merge pull request #108258 from arcz/liquidctl

liquidctl: init at 1.4.2
This commit is contained in:
Pavol Rusnak 2021-01-03 00:09:11 +01:00 committed by GitHub
commit f224edb877
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, docopt
, hidapi
, pyusb
, smbus-cffi
}:
buildPythonPackage rec {
pname = "liquidctl";
version = "1.4.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1h5kqpvlx7xppd2wli986lkslqkcrlz1wixv7fvrppzjc2nfz5d4";
};
propagatedBuildInputs = [
docopt
hidapi
pyusb
smbus-cffi
];
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";
license = licenses.gpl3;
maintainers = with maintainers; [ arturcygan ];
};
}

View file

@ -5605,6 +5605,8 @@ in
linuxquota = callPackage ../tools/misc/linuxquota { };
liquidctl = with python3Packages; toPythonApplication liquidctl;
localtime = callPackage ../tools/system/localtime { };
logcheck = callPackage ../tools/system/logcheck { };

View file

@ -3592,6 +3592,8 @@ in {
linuxfd = callPackage ../development/python-modules/linuxfd { };
liquidctl = callPackage ../development/python-modules/liquidctl { };
lirc = disabledIf isPy27 (toPythonModule (pkgs.lirc.override { python3 = python; }));
littleutils = callPackage ../development/python-modules/littleutils { };