Merge pull request #279761 from fabaff/pygitguardian-bump

python311Packages.pygitguardian: 1.11.0 -> 1.12.0, ggshield: 1.22.0 -> 1.23.0
This commit is contained in:
Nick Cao 2024-01-10 10:41:23 -05:00 committed by GitHub
commit 425d201cce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View file

@ -14,8 +14,8 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pygitguardian"; pname = "pygitguardian";
version = "1.11.0"; version = "1.12.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "GitGuardian"; owner = "GitGuardian";
repo = "py-gitguardian"; repo = "py-gitguardian";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-Vr0+y3Zi7DsXzm2COOlMqUVjlZMRJkaVxT8QpSePhuA="; hash = "sha256-ybl6QOLb1xE6v0D1C2wKMsSU+r2gWzj24Q4pPIMBsCY=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -49,6 +49,7 @@ buildPythonPackage rec {
disabledTests = [ disabledTests = [
# Tests require an API key # Tests require an API key
"test_bogus_rate_limit"
"test_compute_sca_files" "test_compute_sca_files"
"test_content_scan_exceptions" "test_content_scan_exceptions"
"test_content_scan" "test_content_scan"
@ -60,6 +61,7 @@ buildPythonPackage rec {
"test_multi_content_scan" "test_multi_content_scan"
"test_multiscan_parameters" "test_multiscan_parameters"
"test_quota_overview" "test_quota_overview"
"test_rate_limit"
"test_sca_client_scan_diff" "test_sca_client_scan_diff"
"test_sca_scan_directory_invalid_tar" "test_sca_scan_directory_invalid_tar"
"test_sca_scan_directory" "test_sca_scan_directory"

View file

@ -6,14 +6,14 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "ggshield"; pname = "ggshield";
version = "1.22.0"; version = "1.23.0";
format = "pyproject"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "GitGuardian"; owner = "GitGuardian";
repo = "ggshield"; repo = "ggshield";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-AxFztqD43KqX0r8tZz4ltjUh2x42kdPqi+b/OunpPF4="; hash = "sha256-c2EXgUs+6GA5zHHF7Cx21LIsZ+jbmQFFUwLft2q5M30=";
}; };
pythonRelaxDeps = true; pythonRelaxDeps = true;