1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

python312Packages.google-cloud-dlp: 3.18.1 -> 3.22.0 (#339498)

This commit is contained in:
Fabian Affolter 2024-09-04 19:58:13 +02:00 committed by GitHub
commit 013b201139
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,19 +15,20 @@
buildPythonPackage rec {
pname = "google-cloud-dlp";
version = "3.18.1";
version = "3.22.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-KYqhwSa9Z+1s41Ve+GGbnR0BfSZE5UwAqgmqEWfxOC0=";
pname = "google_cloud_dlp";
inherit version;
hash = "sha256-SabiX00pD91acxz83PdkDnPynLp5L9MAqKGY/IIUDAU=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
google-api-core
proto-plus
protobuf
@ -41,7 +42,7 @@ buildPythonPackage rec {
];
disabledTests = [
# Test requires credentials
# Tests require credentials
"test_inspect_content"
"test_list_dlp_jobs"
];