1b6c6b11b0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-google-cloud-speech/versions
26 lines
717 B
Nix
26 lines
717 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, google_api_core, pytest, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-speech";
|
|
version = "0.36.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1jjicvf5r20ibhkkay0p6av8jifvp2wkdd8bs9vmhm4rwvcnlxbf";
|
|
};
|
|
|
|
propagatedBuildInputs = [ google_api_core ];
|
|
checkInputs = [ pytest mock ];
|
|
|
|
# needs credentials
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|