Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 619 B view raw
1{ lib, python3Packages, fetchPypi }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "krakenx"; 5 version = "0.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1khw1rxra5hn7hwp16i6kgj89znq8vjsyly3r2dxx2z2bddil000"; 10 }; 11 12 propagatedBuildInputs = lib.singleton python3Packages.pyusb; 13 14 doCheck = false; # there are no tests 15 16 meta = with lib; { 17 description = "Python script to control NZXT cooler Kraken X52/X62/X72"; 18 homepage = "https://github.com/KsenijaS/krakenx"; 19 license = licenses.gpl2; 20 maintainers = [ maintainers.willibutz ]; 21 platforms = platforms.linux; 22 }; 23}