python312Packages.automate-home: disable on Python 3.12

This commit is contained in:
Fabian Affolter 2024-05-22 13:14:21 +02:00
parent 2101d569c7
commit cd24c5e0cf

View File

@ -1,16 +1,17 @@
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
apscheduler,
hiredis,
aioredis,
apscheduler,
buildPythonPackage,
ephem,
setuptools,
fetchPypi,
hiredis,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
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;