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

python312Packages.aioairzone-cloud: 0.4.6 -> 0.4.7
This commit is contained in:
Mario Rodas 2024-04-03 22:41:32 -05:00 committed by GitHub
commit 58e7a73c4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +1,15 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aioairzone-cloud";
version = "0.4.6";
version = "0.4.7";
pyproject = true;
disabled = pythonOlder "3.7";
@ -17,20 +18,14 @@ buildPythonPackage rec {
owner = "Noltari";
repo = "aioairzone-cloud";
rev = "refs/tags/${version}";
hash = "sha256-EcvHwBSHjKvPqwGCPPpannuSZcDI2Lt2hT5NSgkwfq8=";
hash = "sha256-DIWRYGDdK/wq1TrPSo9I1oZv5jX4rY4z+u7CTwJtyts=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
aiohttp
];
dependencies = [ aiohttp ];
pythonImportsCheck = [
"aioairzone_cloud"
];
pythonImportsCheck = [ "aioairzone_cloud" ];
# Module has no tests
doCheck = false;