lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #128946 from fabaff/bump-aiolifx-effects

python3Packages.aiolifx-effects: 0.2.1 -> 0.2.2

authored by

Fabian Affolter and committed by
GitHub
686c2a2b 54054030

+6 -5
+6 -5
pkgs/development/python-modules/aiolifx-effects/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aiolifx-effects"; 10 - version = "0.2.1"; 10 + version = "0.2.2"; 11 + disabled = !isPy3k; 11 12 12 13 src = fetchPypi { 13 14 inherit version; 14 15 pname = "aiolifx_effects"; 15 - sha256 = "cb4ac52deeb220783fc6449251cf40833fcffa28648270be64b1b3e83e06b503"; 16 + sha256 = "sha256-qkXJDYdJ+QyQWn/u7g6t4QJG1uSqle+a5RhTkPPsHKo="; 16 17 }; 17 18 19 + propagatedBuildInputs = [ aiolifx ]; 20 + 18 21 # tests are not implemented 19 22 doCheck = false; 20 23 21 - disabled = !isPy3k; 22 - 23 - propagatedBuildInputs = [ aiolifx ]; 24 + pythonImportsCheck = [ "aiolifx_effects" ]; 24 25 25 26 meta = with lib; { 26 27 homepage = "https://github.com/amelchio/aiolifx_effects";