From d93ddfa53bbe5f999667dfd8c80fc25eda7e9093 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Tue, 16 Jun 2026 14:34:07 +0200 Subject: [PATCH] python3Packages.pygitguardian: 1.30.0 -> 1.32.0 https://github.com/GitGuardian/py-gitguardian/releases/tag/v1.31.0 https://github.com/GitGuardian/py-gitguardian/releases/tag/v1.32.0 Signed-off-by: Sefa Eyeoglu --- .../python-modules/pygitguardian/default.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/pygitguardian/default.nix b/pkgs/development/python-modules/pygitguardian/default.nix index 64d46ce9d32f..51cccda9e2e1 100644 --- a/pkgs/development/python-modules/pygitguardian/default.nix +++ b/pkgs/development/python-modules/pygitguardian/default.nix @@ -15,21 +15,16 @@ buildPythonPackage rec { pname = "pygitguardian"; - version = "1.30.0"; + version = "1.32.0"; pyproject = true; src = fetchFromGitHub { owner = "GitGuardian"; repo = "py-gitguardian"; tag = "v${version}"; - hash = "sha256-8kKTqthpkH3A5secb8TqbM+/twA77R81y80MOPNQZPA="; + hash = "sha256-f8DkRwgtwaB5R78zklAI0ZvA2gfSwsHFOS3IgDgcEEo="; }; - pythonRelaxDeps = [ - "marshmallow-dataclass" - "setuptools" - ]; - build-system = [ pdm-backend ]; dependencies = [ @@ -53,10 +48,8 @@ buildPythonPackage rec { meta = { description = "Library to access the GitGuardian API"; homepage = "https://github.com/GitGuardian/py-gitguardian"; - changelog = "https://github.com/GitGuardian/py-gitguardian/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/GitGuardian/py-gitguardian/blob/${src.rev}/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"; }; }