Commit 577af7e6 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.distorm3: disable on Python 3.12

Still uses distutils, gdabah/distorm#191
parent 53fb4bf7
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonAtLeast,
  pythonOlder,
  pytestCheckHook,
  setuptools,
@@ -13,7 +14,8 @@ buildPythonPackage rec {
  version = "3.5.2";
  pyproject = true;

  disabled = pythonOlder "3.5";
  # Still uses distutils, https://github.com/gdabah/distorm/issues/191
  disabled = pythonOlder "3.5" || pythonAtLeast "3.12";

  src = fetchFromGitHub {
    owner = "gdabah";