python312Packages.skybellpy: disable on Python 3.12

Still uses distrutils, https://github.com/MisterWil/skybellpy/issues/22
This commit is contained in:
Fabian Affolter 2024-05-22 12:54:20 +02:00
parent 844d52a299
commit 62d0d76f64

View File

@ -6,6 +6,7 @@
pytest-sugar, pytest-sugar,
pytest-timeout, pytest-timeout,
pytestCheckHook, pytestCheckHook,
pythonAtLeast,
pythonOlder, pythonOlder,
requests, requests,
requests-mock, requests-mock,
@ -17,7 +18,8 @@ buildPythonPackage rec {
version = "0.6.3"; version = "0.6.3";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.6"; # Still uses distrutils, https://github.com/MisterWil/skybellpy/issues/22
disabled = pythonOlder "3.6" || pythonAtLeast "3.12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "MisterWil"; owner = "MisterWil";