From 4479cc7cff3dfe6b71f5cc4b7f5ee362f0b2cf11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 8 Apr 2024 09:19:07 +0200 Subject: [PATCH] python312.pkgs.capstone_4: mark as broken --- pkgs/development/python-modules/capstone/4.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/capstone/4.nix b/pkgs/development/python-modules/capstone/4.nix index 3c1898949188..7c79cfe81942 100644 --- a/pkgs/development/python-modules/capstone/4.nix +++ b/pkgs/development/python-modules/capstone/4.nix @@ -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 }; }