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-timeout,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
requests,
requests-mock,
@ -17,7 +18,8 @@ buildPythonPackage rec {
version = "0.6.3";
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 {
owner = "MisterWil";