Unverified Commit 58e7a73c authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

python312Packages.aioairzone-cloud: 0.4.6 -> 0.4.7
parents 9607e1e9 a5e0ce69
Loading
Loading
Loading
Loading
+12 −17
Original line number Diff line number Diff line
{ 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;