nixpkgs/pkgs/development/python-modules/google-cloud-datacatalog/default.nix

25 lines
807 B
Nix

{ lib, buildPythonPackage, fetchPypi, libcst, google-api-core, grpc-google-iam-v1, proto-plus, pytest-asyncio, pytestCheckHook, mock }:
buildPythonPackage rec {
pname = "google-cloud-datacatalog";
version = "3.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "1b0f7bb8aaf8a3e0f4b4509808ee9e1de77b5f076214b0b3e52e0ce86734fd84";
};
propagatedBuildInputs = [ libcst google-api-core grpc-google-iam-v1 proto-plus ];
checkInputs = [ pytest-asyncio pytestCheckHook mock ];
pythonImportsCheck = [ "google.cloud.datacatalog" ];
meta = with lib; {
description = "Google Cloud Data Catalog API API client library";
homepage = "https://github.com/googleapis/python-datacatalog";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}