From 75d291325e739dbd7998636ac57ab6efcae311b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 27 Aug 2025 13:17:42 -0700 Subject: [PATCH] python3Packages.stix2-patterns: mark broken --- pkgs/development/python-modules/stix2-patterns/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/stix2-patterns/default.nix b/pkgs/development/python-modules/stix2-patterns/default.nix index e80cb12df7a3..7daafa73233b 100644 --- a/pkgs/development/python-modules/stix2-patterns/default.nix +++ b/pkgs/development/python-modules/stix2-patterns/default.nix @@ -1,6 +1,5 @@ { lib, - antlr4_9, antlr4-python3-runtime, buildPythonPackage, fetchFromGitHub, @@ -27,7 +26,7 @@ buildPythonPackage rec { build-system = [ setuptools ]; dependencies = [ - (antlr4-python3-runtime.override { antlr4 = antlr4_9; }) + antlr4-python3-runtime six ]; @@ -36,6 +35,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "stix2patterns" ]; meta = with lib; { + broken = lib.versionAtLeast antlr4-python3-runtime.version "4.10"; description = "Validate patterns used to express cyber observable content in STIX Indicators"; mainProgram = "validate-patterns"; homepage = "https://github.com/oasis-open/cti-pattern-validator";