Files
nixpkgs/pkgs/development/python-modules/google-cloud-language/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

53 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
google-api-core,
proto-plus,
protobuf,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "google-cloud-language";
version = "2.13.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-j8ZgMxoTxkDbdqSLrBP56AIBJjGvm63TViaep/Z3xZI=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
google-api-core
proto-plus
protobuf
] ++ google-api-core.optional-dependencies.grpc;
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
];
pythonImportsCheck = [
"google.cloud.language"
"google.cloud.language_v1"
"google.cloud.language_v1beta2"
];
meta = with lib; {
description = "Google Cloud Natural Language API client library";
homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-language";
changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-language-v${version}/packages/google-cloud-language/CHANGELOG.md";
license = licenses.asl20;
maintainers = [ ];
};
}