My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/gtts/default.nix

54 lines
1.0 KiB

{ lib
, buildPythonPackage
, fetchFromGitHub
, beautifulsoup4
, click
, gtts-token
, mock
, pytest
, requests
, six
, testfixtures
, twine
, urllib3
}:
buildPythonPackage rec {
pname = "gtts";
version = "2.2.4";
src = fetchFromGitHub {
owner = "pndurette";
repo = "gTTS";
rev = "v${version}";
sha256 = "sha256-hQnFHi85Rifco0afLF8kKNOy9oPxKoupfmdm+fht6Cg=";
};
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 ];
};
}