python312Packages.stone: disable on Python 3.12

distutils removal is pending, https://github.com/dropbox/stone/issues/323

Changed files
+3 -1
pkgs
development
python-modules
stone
+3 -1
pkgs/development/python-modules/stone/default.nix
···
mock,
ply,
pytestCheckHook,
pythonOlder,
setuptools,
six,
···
version = "3.3.3";
pyproject = true;
-
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dropbox";
···
mock,
ply,
pytestCheckHook,
+
pythonAtLeast,
pythonOlder,
setuptools,
six,
···
version = "3.3.3";
pyproject = true;
+
# distutils removal, https://github.com/dropbox/stone/issues/323
+
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "dropbox";