Commit bcd085b4 authored by Fabian Affolter's avatar Fabian Affolter Committed by Jonathan Ringer
Browse files

python312Packages.stone: disable on Python 3.12

distutils removal is pending, https://github.com/dropbox/stone/issues/323
parent 610fb1b0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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";