Skip to content

Commit

Permalink
python312Packages.distorm3: disable on Python 3.12
Browse files Browse the repository at this point in the history
Still uses distutils, gdabah/distorm#191
  • Loading branch information
fabaff committed May 22, 2024
1 parent 53fb4bf commit 577af7e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/distorm3/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
pythonOlder,
pytestCheckHook,
setuptools,
setuptools,
yasm,
}:

Expand All @@ -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";
Expand Down

0 comments on commit 577af7e

Please sign in to comment.