nixpkgs/pkgs/development/python-modules/google_cloud_speech/default.nix
c0bw3b 69b393ace5 Treewide: update some problematic homepages
These URLs are reported as problematic by Repology.
It could be a permanent redirection
or the page does not exist anymore
2019-12-08 10:21:29 -08:00

27 lines
729 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, google_api_core, pytest, mock }:
buildPythonPackage rec {
pname = "google-cloud-speech";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "f8a1f67b01b5b8bd22fa3ba95a4b99ae4a55b6299665d5ae1afa3db7f6706c32";
};
propagatedBuildInputs = [ google_api_core ];
checkInputs = [ pytest mock ];
checkPhase = ''
pytest tests/unit
'';
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";
license = licenses.asl20;
maintainers = with maintainers; [ vanschelven ];
};
}