pythonPAckages.google_cloud_dataproc: init at 0.2.0
This commit is contained in:
parent
fcf9839117
commit
206a66c138
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, google_api_core
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "google-cloud-dataproc";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "531dbd3e5862df5e67751efdcd89f00d0ded35f3a87a18fd3245e1c365080720";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
propagatedBuildInputs = [ google_api_core ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest tests/unit
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Google Cloud Dataproc API client library";
|
||||||
|
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -2454,6 +2454,8 @@ in {
|
|||||||
|
|
||||||
google_cloud_container = callPackage ../development/python-modules/google_cloud_container { };
|
google_cloud_container = callPackage ../development/python-modules/google_cloud_container { };
|
||||||
|
|
||||||
|
google_cloud_dataproc = callPackage ../development/python-modules/google_cloud_dataproc { };
|
||||||
|
|
||||||
google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { };
|
google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { };
|
||||||
|
|
||||||
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
|
google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user