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 <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2026-06-26 14:10:48 -04:00
parent ff677dc840
commit d93ddfa53b
@@ -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";
};
}