nixpkgs/pkgs/development/python-modules/google_cloud_speech/default.nix

27 lines
729 B
Nix
Raw Normal View History

2017-12-20 22:50:31 +00:00
{ stdenv, buildPythonPackage, fetchPypi
, google_api_core, pytest, mock }:
2017-12-20 22:50:31 +00:00
buildPythonPackage rec {
pname = "google-cloud-speech";
version = "1.2.0";
2017-12-20 22:50:31 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "f8a1f67b01b5b8bd22fa3ba95a4b99ae4a55b6299665d5ae1afa3db7f6706c32";
2017-12-20 22:50:31 +00:00
};
propagatedBuildInputs = [ google_api_core ];
2017-12-20 22:50:31 +00:00
checkInputs = [ pytest mock ];
checkPhase = ''
pytest tests/unit
'';
2017-12-20 22:50:31 +00:00
meta = with stdenv.lib; {
description = "Cloud Speech API enables integration of Google speech recognition into applications.";
homepage = "https://github.com/googleapis/google-cloud-python/tree/master/speech";
2017-12-20 22:50:31 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ vanschelven ];
};
}