python312Packages.distorm3: disable on Python 3.12

Still uses distutils, gdabah/distorm#191
This commit is contained in:
Fabian Affolter
2024-05-22 13:53:25 +02:00
parent 53fb4bf7c7
commit 577af7e6c3
@@ -2,9 +2,10 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
pythonOlder,
pytestCheckHook,
setuptools,
setuptools,
yasm,
}:
@@ -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";