My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/google-cloud-automl/default.nix

70 lines
1.3 KiB

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, libcst
, google-api-core
, google-cloud-storage
, google-cloud-testutils
, pandas
, proto-plus
, pytest-asyncio
, mock
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-automl";
version = "2.7.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-CUsLMX0zRONChgzejZnBztth5ORMZyb6rj6mok2pMMU=";
};
propagatedBuildInputs = [
google-api-core
libcst
proto-plus
];
checkInputs = [
google-cloud-storage
google-cloud-testutils
mock
pandas
pytest-asyncio
pytestCheckHook
];
preCheck = ''
# do not shadow imports
rm -r google
'';
disabledTestPaths = [
# requires credentials
"tests/system/gapic/v1beta1/test_system_tables_client_v1.py"
];
disabledTests = [
# requires credentials
"test_prediction_client_client_info"
];
pythonImportsCheck = [
"google.cloud.automl"
"google.cloud.automl_v1"
"google.cloud.automl_v1beta1"
];
meta = with lib; {
description = "Cloud AutoML API client library";
homepage = "https://github.com/googleapis/python-automl";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}