55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, beautifulsoup4
|
|
, click
|
|
, gtts-token
|
|
, mock
|
|
, pytest
|
|
, requests
|
|
, six
|
|
, testfixtures
|
|
, twine
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gtts";
|
|
version = "2.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pndurette";
|
|
repo = "gTTS";
|
|
rev = "v${version}";
|
|
sha256 = "1pj7lyd1r72nxs3sgd78awpbsz41g4idjvbsjjp4chfq4qnsq0ji";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
beautifulsoup4
|
|
click
|
|
gtts-token
|
|
requests
|
|
six
|
|
urllib3
|
|
twine
|
|
];
|
|
|
|
checkInputs = [ pytest mock testfixtures ];
|
|
|
|
# majority of tests just try to call out to Google's Translate API endpoint
|
|
doCheck = false;
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
pythonImportsCheck = [ "gtts" ];
|
|
|
|
meta = with lib; {
|
|
description = "A Python library and CLI tool to interface with Google Translate text-to-speech API";
|
|
homepage = "https://gtts.readthedocs.io";
|
|
changelog = "https://gtts.readthedocs.io/en/latest/changelog.html";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ unode ];
|
|
};
|
|
}
|