Skip to content

Commit

Permalink
python312Packages.stone: disable on Python 3.12
Browse files Browse the repository at this point in the history
distutils removal is pending, dropbox/stone#323
  • Loading branch information
fabaff committed Apr 23, 2024
1 parent bf5aca5 commit 307e453
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/stone/default.nix
Expand Up @@ -5,6 +5,7 @@
mock,
ply,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
setuptools,
six,
Expand All @@ -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";
Expand Down

0 comments on commit 307e453

Please sign in to comment.