Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 31 lines 669 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, isPy3k 5, aiolifx 6}: 7 8buildPythonPackage rec { 9 pname = "aiolifx-effects"; 10 version = "0.2.1"; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "aiolifx_effects"; 15 sha256 = "cb4ac52deeb220783fc6449251cf40833fcffa28648270be64b1b3e83e06b503"; 16 }; 17 18 # tests are not implemented 19 doCheck = false; 20 21 disabled = !isPy3k; 22 23 propagatedBuildInputs = [ aiolifx ]; 24 25 meta = with lib; { 26 homepage = "https://github.com/amelchio/aiolifx_effects"; 27 license = licenses.mit; 28 description = "Light effects (pulse, colorloop ...) for LIFX lights running on aiolifx"; 29 maintainers = with maintainers; [ netixx ]; 30 }; 31}