forked from mirrors/nixpkgs
pythonPackages.google_cloud_iot: init at 0.1.0
This commit is contained in:
parent
9c13931d5e
commit
3a81c65c38
32
pkgs/development/python-modules/google_cloud_iot/default.nix
Normal file
32
pkgs/development/python-modules/google_cloud_iot/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, enum34
|
||||
, grpc_google_iam_v1
|
||||
, google_api_core
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-iot";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1502fa6d64f8f0f7c0e34e71c82c5daacc8fd8f78256cfadef5ae06c5efcc3b4";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest tests/unit
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Cloud IoT API API client library";
|
||||
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
|
||||
license = licenses.asl20;
|
||||
# maintainers = [ maintainers. ];
|
||||
};
|
||||
}
|
|
@ -2468,6 +2468,8 @@ in {
|
|||
|
||||
google_cloud_firestore = callPackage ../development/python-modules/google_cloud_firestore { };
|
||||
|
||||
google_cloud_iot = callPackage ../development/python-modules/google_cloud_iot { };
|
||||
|
||||
google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { };
|
||||
|
||||
google_cloud_logging = callPackage ../development/python-modules/google_cloud_logging { };
|
||||
|
|
Loading…
Reference in a new issue