pythonPackages:google*: Noramlize names by replacing _ with -
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, libcst
|
||||
, google-api-core
|
||||
, google-cloud-storage
|
||||
, google-cloud-testutils
|
||||
, pandas
|
||||
, proto-plus
|
||||
, pytest-asyncio
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-automl";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "520dfe2ee04d28f3088c9c582fa2a534fc272647d5e2e59acc903c0152e61696";
|
||||
};
|
||||
|
||||
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
|
||||
# requires credentials
|
||||
rm 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 stdenv.lib; {
|
||||
description = "Cloud AutoML API client library";
|
||||
homepage = "https://github.com/googleapis/python-automl";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user