python312.pkgs.capstone_4: mark as broken

This commit is contained in:
Jörg Thalheim 2024-04-08 09:19:07 +02:00
parent 9e015e0334
commit 4479cc7cff
1 changed files with 3 additions and 1 deletions

View File

@ -3,9 +3,10 @@
, capstone_4
, stdenv
, setuptools
, pythonAtLeast
}:
buildPythonPackage rec {
buildPythonPackage {
pname = "capstone";
inherit (capstone_4) version src;
@ -34,5 +35,6 @@ buildPythonPackage rec {
license = licenses.bsdOriginal;
description = "Python bindings for Capstone disassembly engine";
maintainers = with maintainers; [ bennofs ris ];
broken = pythonAtLeast "3.12"; # uses distutils
};
}