From c2e5f1e31b9c1e009cfcc060c252b488ec70f8a9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 10 May 2026 22:56:18 +0200 Subject: [PATCH] python3Packages.pygitguardian: mark as broken for marshmallow >= 4 See https://github.com/GitGuardian/py-gitguardian/issues/167 --- pkgs/development/python-modules/pygitguardian/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pygitguardian/default.nix b/pkgs/development/python-modules/pygitguardian/default.nix index b45c1ac58d24..64d46ce9d32f 100644 --- a/pkgs/development/python-modules/pygitguardian/default.nix +++ b/pkgs/development/python-modules/pygitguardian/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "pygitguardian"; - version = "1.28.0"; + version = "1.30.0"; pyproject = true; src = fetchFromGitHub { owner = "GitGuardian"; repo = "py-gitguardian"; tag = "v${version}"; - hash = "sha256-56Z0peJcjBbNX51MLLaIKcD9Qg+5q+5I0gKRu84/8TM="; + hash = "sha256-8kKTqthpkH3A5secb8TqbM+/twA77R81y80MOPNQZPA="; }; pythonRelaxDeps = [ @@ -56,5 +56,7 @@ buildPythonPackage rec { changelog = "https://github.com/GitGuardian/py-gitguardian/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; + # https://github.com/GitGuardian/py-gitguardian/issues/167 + broken = lib.versionAtLeast marshmallow.version "4"; }; }