Commit cd24c5e0 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.automate-home: disable on Python 3.12

parent 2101d569
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
{
  lib,
  aioredis,
  apscheduler,
  buildPythonPackage,
  ephem,
  fetchPypi,
  hiredis,
  pytestCheckHook,
  pythonAtLeast,
  pythonOlder,
  apscheduler,
  hiredis,
  aioredis,
  ephem,
  setuptools,
  pytz,
  pyyaml,
  setuptools,
}:

buildPythonPackage rec {
@@ -18,7 +19,8 @@ buildPythonPackage rec {
  version = "0.9.1";
  pyproject = true;

  disabled = pythonOlder "3.8";
  # Typing issue
  disabled = pythonOlder "3.8" || pythonAtLeast "3.12";

  src = fetchPypi {
    inherit pname version;