krakenx: init at 0.0.1

This commit is contained in:
WilliButz 2018-03-29 00:25:11 +02:00
parent 8152db99d7
commit 60720eb2c0
No known key found for this signature in database
GPG Key ID: 92582A10F1179CB2
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "krakenx";
version = "0.0.1";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1vxyindph81srya0pfmb3n64n8h7ghp38ak86vc2zc5nyirf5zq8";
};
propagatedBuildInputs = lib.singleton python3Packages.pyusb;
doCheck = false; # there are no tests
meta = with lib; {
description = "Python script to control NZXT cooler Kraken X52/X62";
homepage = https://github.com/KsenijaS/krakenx;
license = licenses.gpl2;
maintainers = [ maintainers.willibutz ];
platforms = platforms.linux;
};
}

View File

@ -3160,6 +3160,8 @@ with pkgs;
kore = callPackage ../development/web/kore { };
krakenx = callPackage ../tools/system/krakenx { };
partition-manager = libsForQt5.callPackage ../tools/misc/partition-manager { };
kpcli = callPackage ../tools/security/kpcli { };