Merge pull request #301379 from fabaff/aioairzone-cloud-bump

python312Packages.aioairzone-cloud: 0.4.6 -> 0.4.7

authored by Mario Rodas and committed by GitHub 58e7a73c 9607e1e9

+12 -17
+12 -17
pkgs/development/python-modules/aioairzone-cloud/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , pythonOlder 6 - , setuptools 1 + { 2 + lib, 3 + aiohttp, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + pythonOlder, 7 + setuptools, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "aioairzone-cloud"; 11 - version = "0.4.6"; 12 + version = "0.4.7"; 12 13 pyproject = true; 13 14 14 15 disabled = pythonOlder "3.7"; ··· 17 18 owner = "Noltari"; 18 19 repo = "aioairzone-cloud"; 19 20 rev = "refs/tags/${version}"; 20 - hash = "sha256-EcvHwBSHjKvPqwGCPPpannuSZcDI2Lt2hT5NSgkwfq8="; 21 + hash = "sha256-DIWRYGDdK/wq1TrPSo9I1oZv5jX4rY4z+u7CTwJtyts="; 21 22 }; 22 23 23 - nativeBuildInputs = [ 24 - setuptools 25 - ]; 24 + build-system = [ setuptools ]; 26 25 27 - propagatedBuildInputs = [ 28 - aiohttp 29 - ]; 26 + dependencies = [ aiohttp ]; 30 27 31 - pythonImportsCheck = [ 32 - "aioairzone_cloud" 33 - ]; 28 + pythonImportsCheck = [ "aioairzone_cloud" ]; 34 29 35 30 # Module has no tests 36 31 doCheck = false;