python312Packages.stone: disable on Python 3.12

distutils removal is pending, https://github.com/dropbox/stone/issues/323
This commit is contained in:
Fabian Affolter 2024-04-23 16:45:10 +02:00 committed by Jonathan Ringer
parent 610fb1b026
commit bcd085b433
1 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@
mock,
ply,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
setuptools,
six,
@ -15,7 +16,8 @@ buildPythonPackage rec {
version = "3.3.3";
pyproject = true;
disabled = pythonOlder "3.7";
# distutils removal, https://github.com/dropbox/stone/issues/323
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "dropbox";