python312Packages.raincloudy: disable on Python 3.12

Still uses imp
https://github.com/vanstinator/raincloudy/issues/65
This commit is contained in:
Fabian Affolter 2024-05-18 13:09:40 +02:00
parent cefc7f029e
commit 254e223f2d

View File

@ -9,6 +9,7 @@
pytest-asyncio,
pytest-aiohttp,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
requests,
requests-mock,
@ -22,7 +23,8 @@ buildPythonPackage rec {
version = "1.2.0";
pypriject = true;
disabled = pythonOlder "3.7";
# https://github.com/vanstinator/raincloudy/issues/65
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "vanstinator";