lol

python310Packages.aiolifx: 0.8.10 -> 0.9.0

Changelog: https://github.com/frawau/aiolifx/releases/tag/0.9.0

+7 -3
+7 -3
pkgs/development/python-modules/aiolifx/default.nix
··· 1 1 { lib 2 2 , async-timeout 3 + , click 3 4 , fetchPypi 4 5 , buildPythonPackage 5 6 , pythonOlder 6 7 , ifaddr 8 + , inquirerpy 7 9 , bitstring 8 10 }: 9 11 10 12 buildPythonPackage rec { 11 13 pname = "aiolifx"; 12 - version = "0.8.10"; 14 + version = "0.9.0"; 13 15 format = "setuptools"; 14 16 15 17 disabled = pythonOlder "3.7"; 16 18 17 19 src = fetchPypi { 18 20 inherit pname version; 19 - hash = "sha256-NiNKFrWxpGkwbb7tFEDD5jZ6ETW20BBIqrdjCsL/DkY="; 21 + hash = "sha256-oK8Ih62EFwu3X5PNVFLH+Uce6ZBs7IMXet5/DHxfd5M="; 20 22 }; 21 23 22 24 propagatedBuildInputs = [ 23 25 async-timeout 24 26 bitstring 27 + click 25 28 ifaddr 29 + inquirerpy 26 30 ]; 27 31 28 - # tests are not implemented 32 + # Module has no tests 29 33 doCheck = false; 30 34 31 35 pythonImportsCheck = [