summary refs log tree commit diff
path: root/pkgs/development/python-modules/google_cloud_speech
diff options
context:
space:
mode:
authorKlaas van Schelven <klaas@vanschelven.com>2017-12-20 23:50:31 +0100
committerKlaas van Schelven <klaas@vanschelven.com>2017-12-20 23:50:31 +0100
commit3a180b0918ed51af919f9b94a3efd1bc9c34f3ab (patch)
tree5d9b617203ef2589a0f5427b71eafd8f6fcc8a0b /pkgs/development/python-modules/google_cloud_speech
parentebec27baa1e9ff998fd9230f3b768542016492d1 (diff)
downloadnixpkgs-3a180b0918ed51af919f9b94a3efd1bc9c34f3ab.tar
nixpkgs-3a180b0918ed51af919f9b94a3efd1bc9c34f3ab.tar.gz
nixpkgs-3a180b0918ed51af919f9b94a3efd1bc9c34f3ab.tar.bz2
nixpkgs-3a180b0918ed51af919f9b94a3efd1bc9c34f3ab.tar.lz
nixpkgs-3a180b0918ed51af919f9b94a3efd1bc9c34f3ab.tar.xz
nixpkgs-3a180b0918ed51af919f9b94a3efd1bc9c34f3ab.tar.zst
nixpkgs-3a180b0918ed51af919f9b94a3efd1bc9c34f3ab.zip
google_cloud_speech: init at 0.30.0
Diffstat (limited to 'pkgs/development/python-modules/google_cloud_speech')
-rw-r--r--pkgs/development/python-modules/google_cloud_speech/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/google_cloud_speech/default.nix b/pkgs/development/python-modules/google_cloud_speech/default.nix
new file mode 100644
index 00000000000..796bd26febd
--- /dev/null
+++ b/pkgs/development/python-modules/google_cloud_speech/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, setuptools, google_api_core, google_gax, google_cloud_core, pytest, mock }:
+
+buildPythonPackage rec {
+  pname = "google-cloud-speech";
+  version = "0.30.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0ckigh6bfzhflhllqdnfygm8w0r6ncp0myf1midifx7sn880g4pa";
+  };
+
+  propagatedBuildInputs = [ setuptools google_api_core google_gax google_cloud_core ];
+  checkInputs = [ pytest mock ];
+
+  checkPhase = ''
+    py.test
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Cloud Speech API enables integration of Google speech recognition into applications.";
+    homepage = "https://googlecloudplatform.github.io/google-cloud-python/latest/speech/";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ vanschelven ];
+  };
+}