Merge pull request #129409 from Kranzes/bump-liquidctl

liquidctl: 1.6.1 -> 1.7.0
This commit is contained in:
Sandro 2021-07-06 17:42:29 +02:00 committed by GitHub
commit 97ce0a22e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,18 +9,19 @@
, smbus-cffi , smbus-cffi
, i2c-tools , i2c-tools
, pytestCheckHook , pytestCheckHook
, colorlog
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "liquidctl"; pname = "liquidctl";
version = "1.6.1"; version = "1.7.0";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-FYpr1mYzPc0rOE75fUNjxe/57EWl+zcbIbkqFseDhzI="; sha256 = "sha256-tpk8wCKyrj3dOkBxj9UWcyrAb31uKtl2fRwwh7dAQGE=";
}; };
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
@ -31,6 +32,7 @@ buildPythonPackage rec {
pyusb pyusb
smbus-cffi smbus-cffi
i2c-tools i2c-tools
colorlog
]; ];
outputs = [ "out" "man" ]; outputs = [ "out" "man" ];